代码搜索:OSTaskCreate
找到约 1,021 项符合「OSTaskCreate」的源代码
代码结果 1,021
www.eeworm.com/read/139405/5799083
c test.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/127514/6004737
c test.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/124402/6048612
c test.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/107425/6189296
s43 test.s43
NAME test(16)
RSEG CODE(1)
RSEG UDATA0(1)
EXTERN OSInit
EXTERN OSStart
EXTERN OSTaskCreate
EXTERN OSTimeDly
PUBLIC TaskStart
PUBLIC TaskStartStk
PUBLIC main
EXTERN ?CL430_1_26_L08
www.eeworm.com/read/478208/6721969
c appmain.c
#include "INCLUDES.H"
#define TASK_STK_SIZE 128
extern void vInitLED(void);
extern void vLEDOn(void);
extern void init_Tick(void);
OS_STK TaskStartStk[TASK_STK_SIZE];
www.eeworm.com/read/264306/11320461
c main.c
#include "includes.h"
#include "DSP28_Device.h"
#define TASK_STK_SIZE 50
#define N_TASKS 3
OS_STK TaskStartStk[TASK_STK_SIZE];
OS_STK TaskStk[N_TASKS][TASK_STK_SIZE];
/*
************
www.eeworm.com/read/263737/11345518
c main.c
/*
* File: main.c
*
* uC/OS Real-time multitasking kernel for the ARM processor.
*
*
* Created by hgxxx
*
*/
#include "../ucos_ii/ucos_ii.h" /* uC/OS interface */
www.eeworm.com/read/406559/11439868
c main.c
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
www.eeworm.com/read/404399/11485639
c ex3.c
#include "includes.h"
#include "ioports.h"
#define IMR *(volatile unsigned int*)0x00
#define IFR *(volatile unsigned int*)0x01
#define TASK_STK_SIZE 256 /* Size of ea
www.eeworm.com/read/158472/11612579
c app.c
#include "includes.h"
#define TASK_STK_SIZE 64 /* 定义任务堆栈大小 */
OS_STK TaskStartStk[TASK_STK_SIZE];
void TaskStart(void *data); /* 前导声明任务(