亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? untitl~1.searchresults

?? transplant uc/os2 on coldfire5307 編譯通過
?? SEARCHRESULTS
?? 第 1 頁 / 共 5 頁
字號(hào):
---- Task Matches (816 in 15 files) ----
Main.c (ex_mcf): *  We need a heartbeat for the uC/OS task scheduler to use for
Main.c (ex_mcf): *  task preemption.  This should have a 10 ms period to match the
Main.c (ex_mcf):/*  StartupTask
Main.c (ex_mcf): *	Task function for system startup task created in main().  Its
Main.c (ex_mcf): *  primary duty is to enable the tick interrupt so that the task
Main.c (ex_mcf): *  one task is created and running (e.g. this task) to eliminate a
Main.c (ex_mcf):void StartupTask(void *data)
Main.c (ex_mcf):    OSTaskDel(OS_PRIO_SELF);
Main.c (ex_mcf):	OS_STK StartupTaskStack[1024];
Main.c (ex_mcf):    memset(StartupTaskStack, 0x55, sizeof(StartupTaskStack));
Main.c (ex_mcf):    OSTaskCreate(StartupTask,
Main.c (ex_mcf):		 &StartupTaskStack[1023],
Os_cfg.h (ex_mcf):#define OS_MAX_TASKS             10    /* Max. number of tasks in your application ...                 */
Os_cfg.h (ex_mcf):#define OS_TASK_IDLE_STK_SIZE   64   /* Idle task stack size (# of OS_STK wide entries)              */
Os_cfg.h (ex_mcf):#define OS_TASK_STAT_EN           0    /* Enable (1) or Disable(0) the statistics task                 */
Os_cfg.h (ex_mcf):#define OS_TASK_STAT_STK_SIZE   512    /* Statistics task stack size (# of OS_STK wide entries)        */
Os_cfg.h (ex_mcf):                                       /* --------------------- TASK MANAGEMENT ---------------------- */
Os_cfg.h (ex_mcf):#define OS_TASK_CHANGE_PRIO_EN    0    /*     Include code for OSTaskChangePrio()                      */
Os_cfg.h (ex_mcf):#define OS_TASK_CREATE_EN         1    /*     Include code for OSTaskCreate()                          */
Os_cfg.h (ex_mcf):#define OS_TASK_CREATE_EXT_EN     0   /*     Include code for OSTaskCreateExt()                       */
Os_cfg.h (ex_mcf):#define OS_TASK_DEL_EN            1    /*     Include code for OSTaskDel()                             */
Os_cfg.h (ex_mcf):#define OS_TASK_SUSPEND_EN        0    /*     Include code for OSTaskSuspend() and OSTaskResume()      */
Os_cfg.h (ex_mcf):#define OS_TASK_QUERY_EN          0    /*     Include code for OSTaskQuery()                           */
Test.c (ex_mcf):#define  TASK_STK_SIZE                 512       /* Size of each task's stacks (# of WORDs)            */
Test.c (ex_mcf):#define  N_TASKS                       4      /* Number of identical tasks                          */
Test.c (ex_mcf):OS_STK        TaskStk[N_TASKS][TASK_STK_SIZE];        /* Tasks stacks                                  */
Test.c (ex_mcf):OS_STK        TaskStartStk[TASK_STK_SIZE];
Test.c (ex_mcf):char          TaskData[N_TASKS];                      /* Parameters to pass to each task               */
Test.c (ex_mcf):void  Task(void *pdata);                       /* Function prototypes of tasks                  */
Test.c (ex_mcf):        void  TaskStart(void *data);                  /* Function prototypes of Startup task           */
Test.c (ex_mcf):static  void  TaskStartCreateTasks(void);
Test.c (ex_mcf):#define 	NTASK	4
Test.c (ex_mcf):/*  ShortTask
Test.c (ex_mcf): *	Demonstrates that a task which returns does fall into the
Test.c (ex_mcf): *  provided call site and subsequently calls OSTaskDel().
Test.c (ex_mcf):void ShortTask(void *pdata)
Test.c (ex_mcf):unsigned char task[]=" Now light the leds!!!!\r\n";
Test.c (ex_mcf): UART1WritePacket(imm, task, sizeof(task)+1);
Test.c (ex_mcf):OS_STK ShortStack[1024][NTASK];
Test.c (ex_mcf): *  task defined.
Test.c (ex_mcf): *	Called during the initialization task during uC/OS kernel
Test.c (ex_mcf): *  startup to create all interesting tasks in the system.  If this
Test.c (ex_mcf): *  function exits, the startup task will commit suicide.  If a system
Test.c (ex_mcf): *  task running at a priority lower than all tasks other than the
Test.c (ex_mcf): *  OS low priority tasks is needed, then the startup task may be
Test.c (ex_mcf):    OSTaskCreate(ShortTask,
Test.c (ex_mcf):    for (i = 0; i < NTASK; i++) {                        /* Create N_TASKS identical tasks           */
Test.c (ex_mcf):        TaskData[i] = '0' + i;                             /* Each task will display its own letter    */
Test.c (ex_mcf):        OSTaskCreate(Task, (void *)&TaskData[i], &TaskStk[i][TASK_STK_SIZE - 1], i + 1);
Test.c (ex_mcf):void  Task (void* pdata)
Test.c (ex_mcf):        unsigned char task[]=" TASK!!!!\r\n";
Test.c (ex_mcf):    for (x=0;x<NTASK;x++) {
Test.c (ex_mcf):         UART1WritePacket(imm, task, sizeof(task)+1);
Os_cpu.h (mcf5307):# define  OS_TASK_SW()         asm volatile (" trap #14 ");
Os_cpu.h (mcf5307):# define  OS_TASK_SW()         asm (" trap #14 ");
Os_cpu_c.c (mcf5307):/*  TaskCallSite
Os_cpu_c.c (mcf5307): *	Provide a simulated call site for every task function.
Os_cpu_c.c (mcf5307): *  This allows a task function which accidentally returns to
Os_cpu_c.c (mcf5307):void TaskCallSite()
Os_cpu_c.c (mcf5307):    //printf("!!!!! Task at prio %d function returned.\n", OSPrioCur);
Os_cpu_c.c (mcf5307):    OSTaskDel(OS_PRIO_SELF);
Os_cpu_c.c (mcf5307): * The INITIAL_SR makes each task start up with the following
Os_cpu_c.c (mcf5307):/*  OSTaskStkInit
Os_cpu_c.c (mcf5307): *	Build the initial stack frame for a new task.
Os_cpu_c.c (mcf5307): *  the task function and before the execution of any of the
Os_cpu_c.c (mcf5307): *  task function prolog.  A dummy return address will be pushed
Os_cpu_c.c (mcf5307): *  OSDeleteTask() to delete any task whos function returns.
Os_cpu_c.c (mcf5307): *                |PC of exception (task func)|
Os_cpu_c.c (mcf5307):OS_STK *OSTaskStkInit(void (*task)(void *pd), void  *pdata, OS_STK  *ptos,
Os_cpu_c.c (mcf5307):    *--stk = (OS_STK)pdata;		/* Task "function" parameters */
Os_cpu_c.c (mcf5307):    *--stk           = (long)task;	/* Task PC */
Os_cpu_c.c (mcf5307):     *  To support tasks built with the register calling convention,
Os_cpu_c.c (mcf5307):void OSTaskCreateHook(OS_TCB *ptcb)
Os_cpu_c.c (mcf5307):void OSTaskDelHook(OS_TCB *ptcb)
Os_cpu_c.c (mcf5307):	unsigned char task[]=" Nowtaskdel!!!!\r\n";
Os_cpu_c.c (mcf5307): UART1WritePacket(imm, task, sizeof(task)+1);
Os_cpu_c.c (mcf5307):void OSTaskSwHook(void)
Os_cpu_c.c (mcf5307):void OSTaskStatHook(void)
Os_cpu_c.c (mcf5307):void          OSTaskIdleHook(void){
Readme.txt:      test.c		Example task
Readme.txt:    timer in the first task executed by the call to OSStart().
Readme.txt:2.1 Returning from a task function
Readme.txt:    This port arranges the stack frame generated by OSTaskStkInit()
Readme.txt:    task function which accidentally exits to take some well-defined
Readme.txt:    simply deleting the task and continuing.
Os_core.c (source):static  void  OS_InitTaskIdle(void);
Os_core.c (source):static  void  OS_InitTaskStat(void);
Os_core.c (source):    OS_InitTaskIdle();                                           /* Create the Idle Task                     */
Os_core.c (source):#if OS_TASK_STAT_EN > 0
Os_core.c (source):    OS_InitTaskStat();                                           /* Create the Statistic Task                */
Os_core.c (source):*              a new, high-priority task, is ready to run.
Os_core.c (source):            if (OSPrioHighRdy != OSPrioCur) {              /* No Ctx Sw if current task is highest rdy */
Os_core.c (source):    if (OSRunning == TRUE) {                     /* Make sure multitasking is running                  */
Os_core.c (source):    if (OSRunning == TRUE) {                                   /* Make sure multitasking is running    */
Os_core.c (source):*                                          START MULTITASKING
Os_core.c (source):* Description: This function is used to start the multitasking process which lets uC/OS-II manages the
Os_core.c (source):*              task that you have created.  Before you can call OSStart(), you MUST have called OSInit()
Os_core.c (source):*              and you MUST have created at least one task.
Os_core.c (source):*                 a) Call OSTaskSwHook() then,
Os_core.c (source):*                 c) Load the context of the task pointed to by OSTCBHighRdy.
Os_core.c (source):*                 d_ Execute the task.
Os_core.c (source):        y             = OSUnMapTbl[OSRdyGrp];        /* Find highest priority's task priority number   */
Os_core.c (source):        OSTCBHighRdy  = OSTCBPrioTbl[OSPrioHighRdy]; /* Point to highest priority task ready to run    */
Os_core.c (source):        OSStartHighRdy();                            /* Execute target specific code to start task     */
Os_core.c (source):*              how high a 32-bit counter would count to in 1 second if no other tasks were to execute
Os_core.c (source):*              during that time.  CPU usage is then determined by a low priority task which keeps track
Os_core.c (source):*              of this 32-bit counter every second but this time, with other tasks running.  CPU usage is
Os_core.c (source):#if OS_TASK_STAT_EN > 0
Os_core.c (source):*              called by a high priority task.
Os_core.c (source):                    if ((ptcb->OSTCBStat & OS_STAT_SUSPEND) == OS_STAT_RDY) { /* Is task suspended?    */
Os_core.c (source):                        OSRdyGrp               |= ptcb->OSTCBBitY; /* No,  Make task R-to-R (timed out)*/
Os_core.c (source):                        ptcb->OSTCBDly = 1;                /* ... loosing the task when the ...        */
Os_core.c (source):* Description: This function doesn't do anything.  It is called by OSTaskDel().
Os_core.c (source):#if OS_TASK_DEL_EN > 0
Os_core.c (source):*                             MAKE TASK READY TO RUN BASED ON EVENT OCCURING
Os_core.c (source):* Description: This function is called by other uC/OS-II services and is used to ready a task that was
Os_core.c (source):INT8U  OS_EventTaskRdy (OS_EVENT *pevent, void *msg, INT8U msk)
Os_core.c (source):    y    = OSUnMapTbl[pevent->OSEventGrp];            /* Find highest prio. task waiting for message   */
Os_core.c (source):    prio = (INT8U)((y << 3) + x);                     /* Find priority of task getting the msg         */
Os_core.c (source):    if ((pevent->OSEventTbl[y] &= ~bitx) == 0x00) {   /* Remove this task from the waiting list        */
Os_core.c (source):        pevent->OSEventGrp &= ~bity;                  /* Clr group bit if this was only task pending   */
Os_core.c (source):    ptcb                 =  OSTCBPrioTbl[prio];       /* Point to this task's OS_TCB                   */
Os_core.c (source):    ptcb->OSTCBDly       =  0;                        /* Prevent OSTimeTick() from readying task       */
Os_core.c (source):    ptcb->OSTCBEventPtr  = (OS_EVENT *)0;             /* Unlink ECB from this task                     */
Os_core.c (source):    ptcb->OSTCBMsg       = msg;                       /* Send message directly to waiting task         */
Os_core.c (source):    if (ptcb->OSTCBStat == OS_STAT_RDY) {             /* See if task is ready (could be susp'd)        */
Os_core.c (source):        OSRdyGrp        |=  bity;                     /* Put task in the ready to run list             */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产91精品在线观看| 日本高清不卡一区| 有码一区二区三区| 欧美成人免费网站| 欧美在线|欧美| 国产黄色精品视频| 蜜桃视频在线观看一区| 亚洲欧美激情在线| 亚洲第一会所有码转帖| 国产精品青草久久| 久久只精品国产| 欧美高清www午色夜在线视频| 成人黄色小视频| 国产精品原创巨作av| 日韩高清欧美激情| 亚洲一区二区精品视频| 中文字幕一区二区三区四区| 欧美精品一区二区三区在线| 欧美精品123区| 欧美在线免费视屏| 色美美综合视频| 99re这里只有精品视频首页| 国产精品白丝jk黑袜喷水| 免费xxxx性欧美18vr| 午夜电影一区二区| 亚洲国产日日夜夜| 亚洲影院免费观看| 一区二区三区在线高清| 亚洲婷婷在线视频| 一区精品在线播放| 成人免费在线观看入口| 国产精品美女视频| 中文字幕的久久| 中文字幕第一页久久| 中文在线一区二区 | 99国产欧美另类久久久精品| 国产一二精品视频| 国产成人在线视频网址| 国产中文一区二区三区| 国产在线精品一区二区不卡了 | 欧美日韩三级一区二区| 一本大道久久a久久精二百| 94-欧美-setu| 91麻豆免费看片| 欧美亚洲自拍偷拍| 欧美三级电影一区| 欧美一区二区私人影院日本| 91精品国产综合久久精品| 亚洲日本在线天堂| 亚洲欧洲国产日本综合| 一区二区三区四区在线播放| 亚洲一区国产视频| 日韩高清一区在线| 国产一区二区三区久久悠悠色av| 国产乱码字幕精品高清av| 国产风韵犹存在线视精品| 成人动漫精品一区二区| 97精品久久久午夜一区二区三区 | 国产一区二区三区电影在线观看| 国内精品写真在线观看| 国产aⅴ综合色| 一本色道**综合亚洲精品蜜桃冫| 欧美日韩免费视频| 日韩精品中午字幕| 国产精品天天看| 亚洲一卡二卡三卡四卡| 免费一级欧美片在线观看| 国产乱对白刺激视频不卡| 波多野结衣的一区二区三区| 欧美综合一区二区| 欧美一级xxx| 中文乱码免费一区二区| 亚洲一区二区三区四区五区中文| 日本不卡123| 成人黄色av网站在线| 欧美精品少妇一区二区三区| 精品少妇一区二区三区在线播放| 国产精品毛片久久久久久| 亚洲国产精品久久久久秋霞影院 | 夜夜揉揉日日人人青青一国产精品| 婷婷六月综合亚洲| 国产.欧美.日韩| 欧美视频一区在线观看| 久久久精品人体av艺术| 亚洲成人1区2区| 粉嫩一区二区三区性色av| 欧美视频三区在线播放| 国产午夜精品美女毛片视频| 亚洲一二三区视频在线观看| 国产一区二区三区免费观看| 欧美色网一区二区| 国产欧美精品一区二区色综合| 午夜不卡av在线| av在线一区二区| 精品美女被调教视频大全网站| 亚洲欧洲制服丝袜| 欧美tickle裸体挠脚心vk| 欧美经典三级视频一区二区三区| 91精品国产日韩91久久久久久| 日本一二三四高清不卡| 亚洲成人av在线电影| 不卡av免费在线观看| 337p日本欧洲亚洲大胆精品| 亚洲影视资源网| 成人精品在线视频观看| 精品999在线播放| 日韩黄色免费电影| 在线这里只有精品| 综合电影一区二区三区| 成人性生交大片免费| 精品国产乱码久久久久久1区2区 | 美女网站在线免费欧美精品| 色综合网色综合| 中文字幕欧美日本乱码一线二线| 久久99精品国产.久久久久久 | 亚洲国产成人tv| 国产成人超碰人人澡人人澡| 日韩欧美电影一区| 日本成人在线网站| 欧美日韩国产bt| 亚洲午夜精品在线| 欧洲一区二区三区免费视频| 亚洲欧洲日韩综合一区二区| 国产精品一区二区三区99| 欧美本精品男人aⅴ天堂| 天堂成人免费av电影一区| 欧美日韩一区高清| 亚洲福利一二三区| 在线观看欧美黄色| 亚洲6080在线| 欧美日本韩国一区二区三区视频| 亚洲va在线va天堂| 欧美在线短视频| 亚洲6080在线| 欧美一区二区国产| 麻豆91小视频| 欧美精品一区二区久久久| 老司机免费视频一区二区三区| 欧美电影免费观看高清完整版在| 日韩影院在线观看| 91精品国产入口在线| 麻豆91精品91久久久的内涵| 欧美成人午夜电影| 国产福利精品一区| 18欧美乱大交hd1984| 色乱码一区二区三区88| 亚洲美女偷拍久久| 91国偷自产一区二区开放时间| 亚洲综合清纯丝袜自拍| 欧美人妇做爰xxxⅹ性高电影 | 国产精品美女久久久久高潮| 99国产欧美另类久久久精品| 亚洲制服丝袜一区| 欧美美女直播网站| 黄一区二区三区| 国产精品嫩草99a| 在线亚洲一区观看| 日本伊人色综合网| 精品区一区二区| 成人一区二区三区在线观看| 一区二区三区中文字幕精品精品| 欧美日韩1区2区| 狠狠色丁香九九婷婷综合五月| 亚洲国产精品t66y| 在线影院国内精品| 精品亚洲免费视频| 日韩毛片视频在线看| 欧美精品一二三区| 高清不卡一区二区| 亚洲综合一区在线| 精品久久人人做人人爽| 91网站视频在线观看| 亚洲h精品动漫在线观看| 久久久久久久久久看片| 91浏览器打开| 久久成人免费日本黄色| 亚洲欧美日韩在线| 日韩视频免费直播| 99热精品一区二区| 裸体一区二区三区| 国产精品久久国产精麻豆99网站| 欧美日本在线一区| 成人va在线观看| 美女mm1313爽爽久久久蜜臀| 1区2区3区精品视频| 精品久久人人做人人爱| 91精品办公室少妇高潮对白| 久久国产精品露脸对白| 亚洲欧美激情插| 精品乱码亚洲一区二区不卡| 色欧美片视频在线观看在线视频| 激情文学综合丁香| 亚洲一区二区成人在线观看| 国产拍揄自揄精品视频麻豆| 欧美二区在线观看| 91在线视频网址| 国产美女视频一区| 日日夜夜免费精品视频| 日韩一区有码在线| 国产网站一区二区|