代码搜索:Task0

找到约 203 项符合「Task0」的源代码

代码结果 203
www.eeworm.com/read/314627/13563255

c main.c

#include "stdlib.h" #include "main.h" #include #include #define TaskStkLengh 64 //Define the Task0 stack length 定义用户任务0的堆栈长度 ///////////////////////////////
www.eeworm.com/read/483365/6605392

h app_cfg.h

#ifndef APP_CFG_H #define APP_CFG_H //Task Stk lengh #define MainTaskStkLengh 1024*2 // Define the MainTask stack length #define Task0StkLengh 1024 // Define the Task0 stack length
www.eeworm.com/read/17254/728558

h app_cfg.h

#ifndef APP_CFG_H #define APP_CFG_H //Task Stk lengh #define MainTaskStkLengh 1024*2 // Define the MainTask stack length #define Task0StkLengh 1024 // Define the Task0 stack le
www.eeworm.com/read/236685/14003331

c main.c

//#include "2407REGS.h" #include "includes.h" #include "Task0.h" void main(void) { int i; DSPInit(); OSInit(); OSTaskCreate(Task0, (void *)0, &Task0Stk[0], 0); OSStart();
www.eeworm.com/read/414217/11124286

txt ucos.txt

OSTimeDly(OS_TICKS_PER_SEC); // 延时1秒 TargetInit (); // 目标板初始化 OSTaskCreate (Task0,(void *)0, &TaskStk[TaskStkLengh - 1], 2); OS_EVENT *PWMBox; PWMBox = OSMboxCreate((void *)0); // 创建邮箱
www.eeworm.com/read/414207/11124872

txt ucos.txt

OSTimeDly(OS_TICKS_PER_SEC); // 延时1秒 TargetInit (); // 目标板初始化 OSTaskCreate (Task0,(void *)0, &TaskStk[TaskStkLengh - 1], 2); OS_EVENT *PWMBox; PWMBox = OSMboxCreate((void *)0); // 创建邮箱
www.eeworm.com/read/321357/3538042

hex dma_image.hex

/* SmartDMA image contains 5376 bytes (578 bytes unused) */ /* Task0(TASK_PCI_TX): Start of Entry -> 0xf0008000 */ f0008200 /* Task 0 Descriptor Table */ f0008238 f0008700 /* Task 0 Variable T
www.eeworm.com/read/321357/3538063

hex dma_image.hex

/* SmartDMA image contains 5376 bytes (578 bytes unused) */ /* Task0(TASK_PCI_TX): Start of Entry -> 0xf0008000 */ f0008200 /* Task 0 Descriptor Table */ f0008238 f0008700 /* Task 0 Variable T
www.eeworm.com/read/321357/3538084

hex dma_image.hex

/* SmartDMA image contains 5120 bytes (348 bytes unused) */ /* Task0(TASK_PCI_TX): Start of Entry -> 0xf0008000 */ f0008200 /* Task 0 Descriptor Table */ f0008238 f0008600 /* Task 0 Variable T
www.eeworm.com/read/236685/14003329

c task0.c

#include "includes.h" #include "Task0.h" #include "TestTask.h" OS_STK Task0Stk[TASK0_STK_SZ]; static unsigned int led=0; void Task0(void *pdata) { int i;