20140715

    1. stm32f407驱动enc28j60 2/2531 stm32/stm8 2019-04-01
      问题已经解决了,谢谢了,是spi配置的问题
    2. 下载不了,能再发一遍吗
    3. ucos中加入温度采集任务导致程序卡死 9/7473 实时操作系统RTOS 2014-08-04
      谢谢大家,我的问题已解决了,是delay_ms和系统滴答起了冲突导致
    4. ucos中加入温度采集任务导致程序卡死 9/7473 实时操作系统RTOS 2014-07-16
      armcu 发表于 2014-7-16 11:07 看看堆栈有没有溢出
      调试运行,发现死在空闲任务那里切换不出去,这怎么解
    5. ucos中加入温度采集任务导致程序卡死 9/7473 实时操作系统RTOS 2014-07-16
      armcu 发表于 2014-7-16 08:38 内存不足,堆栈溢出,访问越界都有可能
      试了下把其他任务删除,只留了2个led闪烁的任务和温度采集的任务,这样还是会卡住,执行了一次就死在那里
    6. ucos中加入温度采集任务导致程序卡死 9/7473 实时操作系统RTOS 2014-07-15
      补充 static OS_STK startup_task_stk[STARTUP_TASK_STK_SIZE]; static OS_STK task1_stk[STARTUP_TASK_STK_SIZE]; static OS_STK task2_stk[STARTUP_TASK_STK_SIZE]; static OS_STK task3_stk[STARTUP_TASK_STK_SIZE]; static OS_STK task4_stk[STARTUP_TASK_STK_SIZE]; static OS_STK task5_stk[STARTUP_TASK_STK_SIZE];   static OS_STK task6_stk[STARTUP_TASK_STK_SIZE]; static void task1(void *p_arg); static void task2(void *p_arg); static void task3(void *p_arg); static void task4(void *p_arg); static void task5(void *p_arg);   static void task6(void *p_arg); static void startup_task(void *p_arg) {         systick_init();     /* Initialize the SysTick. */ #if (OS_TASK_STAT_EN > 0)         OSStatInit();      /* Determine CPU capacity. */ #endif /* TODO: create application tasks here */ //        RTC_Configuration(); //                RTC_Set(14,6,10,1,15,0);          OSTaskCreate((void (*)(void *))task1, (void *)0,               &task1_stk[STARTUP_TASK_STK_SIZE - 1],6);          OSTaskCreate((void (*)(void *))task2, (void *)0,               &task2_stk[STARTUP_TASK_STK_SIZE - 1], 7);          OSTaskCreate((void (*)(void *))task3, (void *)0,               &task3_stk[STARTUP_TASK_STK_SIZE - 1], 8);          OSTaskCreate((void (*)(void *))task4, (void *)0,               &task4_stk[STARTUP_TASK_STK_SIZE - 1], 9);          OSTaskCreate((void (*)(void *))task5, (void *)0,               &task5_stk[STARTUP_TASK_STK_SIZE - 1], 10); //         OSTaskCreate((void (*)(void *))task6, (void *)0,   //            &task6_stk[STARTUP_TASK_STK_SIZE - 1], 11);               OSTaskDel(OS_PRIO_SELF); }

最近访客

< 1/1 >

统计信息

已有4人来访过

  • 芯积分:--
  • 好友:--
  • 主题:2
  • 回复:6

留言

你需要登录后才可以留言 登录 | 注册


现在还没有留言