代码搜索:OSTaskCreate

找到约 1,021 项符合「OSTaskCreate」的源代码

代码结果 1,021
www.eeworm.com/read/349880/10794753

c main.c

//main.c #include ".\Core\includes.h" #define N_TASKS 3 // Number of tasks #define TASK_STK_SIZE 64 // Stack size, in sizeof OS_STK, or int 16bit OS_STK TaskStk[N_TASKS][TASK_STK_SIZE]; // T
www.eeworm.com/read/135104/7094360

c main.c

#include "ucos-ii/includes.h" /* uC/OS interface */ #include "uhal/uhal.h" /********************************************/ // ARMSYS实验十六:uC/OS-II基本应用 // 描述:在操作系统基础上编写任务
www.eeworm.com/read/451444/7463682

c ex1.c

#include "..\uc_os_II\includes.h" OS_STK xdata Task1Stack[CPU_MAX_STK_SIZE]; OS_STK xdata Task2Stack[CPU_MAX_STK_SIZE]; void Task1(void xdata * ppdata) reentrant { ppdata = ppdata; while(1
www.eeworm.com/read/137755/13300371

c main.c

#include #include "serial.h" sbit led3=P1^0; OS_STK TaskStartStk1[MaxStkSize],TaskStartStk2[MaxStkSize]; void Task1(void *nouse) reentrant; void Task2(void *nouse) reentrant;
www.eeworm.com/read/137670/13306751

c main.c

#include #include "serial.h" sbit led3=P1^0; OS_STK TaskStartStk1[MaxStkSize],TaskStartStk2[MaxStkSize]; void Task1(void *nouse) reentrant; void Task2(void *nouse) reentrant;
www.eeworm.com/read/316612/13519917

c main.c

#include "ucos-ii/includes.h" /* uC/OS interface */ #include "uhal/uhal.h" //task stack size #ifdef SEMIHOSTED #define TASK_STACK_SIZE (64+SEMIHOSTED_STACK_NEEDS) #else #def
www.eeworm.com/read/306282/13747873

c main.c

/****************************************Copyright (c)************************************************** ** Guangzou ZLG-MCU Development Co.,LTD. **
www.eeworm.com/read/132322/5917888

c test.c

/************************************************************************** * * * PROJECT : ARM port for UCOS-II
www.eeworm.com/read/345862/6338072

c eg1.c

/* * File: example1.c * * uC/OS Real-time multitasking kernel for the ARM processor. * * Simple example of using multiple tasks and mailboxes. * * Created by Marco Graziano (marco
www.eeworm.com/read/492691/6419222

c main.c

/* * MAIN.C - Test uCOS kernal on M68HC16Z1 BDM using INTROL16 compiler * The kernal services tested are: * OSInit() * OSIntE