代码搜索:OSTaskCreate
找到约 1,021 项符合「OSTaskCreate」的源代码
代码结果 1,021
www.eeworm.com/read/228416/14386273
c testostaskrestart.c
#include "taskTest.h"
static void entry2(
void* argument
)
{
printf("in task entry,the param[%d].\n",(int)argument);
while(1)
OSTaskDelay(10);
}
int testOSTaskRestart()
{
www.eeworm.com/read/367194/9767310
c11 main.c11
/*
* File: main.c
*
* uC/OS Real-time multitasking kernel for the ARM processor.
*
* This program is an example of using semaphore to
* implement task rendevous.
*
* Created by
www.eeworm.com/read/200954/15419806
c main.c
/*
* File: main.c
*
* uC/OS Real-time multitasking kernel for the ARM processor.
*
* This program is an example of using semaphore to
* implement task rendevous.
*
* Created by
www.eeworm.com/read/103781/15721326
c main.c
/******************************************************************************************************\
*
www.eeworm.com/read/9397/167443
c main.c
#include "config.h"
int main (void)
{
OSInit();
OSTaskCreate(TaskStart, (void *)0, &TaskStartStk[TASK_START_STK_SIZE - 1], 0);
OSTaskCreate(TaskUart0Receive, (void *)0,&T
www.eeworm.com/read/190845/8437469
c main.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/428734/8850302
c hello.c
#include "includes.h"
#define TASK_STK_SIZE 1024 // Stack size, in bytes
#define N_TASKS 2 // Number of tasks
OS_STK TaskStk[N_TASKS][TASK_STK_SIZE/sizeof(OS_STK)]; // Tasks stacks
int x = 0;
www.eeworm.com/read/282231/9113269
c main.c
#include "..\INC\includes.h" /* uC/OS interface */
#define STACKSIZE 0x8ff
extern void Show_corporationname(U8 LcdBuffer);
unsigned int Stack1[STACKSIZE]={0};
unsigned int Stack2
www.eeworm.com/read/178325/9407704
c ext1.c
/*********************************************************************************************************
** Small RTOS(51)
** Th
www.eeworm.com/read/178325/9407755
c serial.c
/*********************************************************************************************************
** Small RTOS(51)
** Th