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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? os_core.c

?? ucos很好的學習代碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
*                 CPU Usage (%) = 100 * (1 - ------------)
*                                            OSIdleCtrMax
*
* Arguments  : none
*
* Returns    : none
*********************************************************************************************************
*/

#if OS_TASK_STAT_EN
void OSStatInit (void)
{
    OSTimeDly(2);                                /* Synchronize with clock tick                        */
    OS_ENTER_CRITICAL();
    OSIdleCtr    = 0L;                           /* Clear idle counter                                 */
    OS_EXIT_CRITICAL();
    OSTimeDly(OS_TICKS_PER_SEC);                 /* Determine MAX. idle counter value for 1 second     */
    OS_ENTER_CRITICAL();
    OSIdleCtrMax = OSIdleCtr;                    /* Store maximum idle counter count in 1 second       */
    OSStatRdy    = TRUE;
    OS_EXIT_CRITICAL();
}
#endif
/*$PAGE*/
/*
*********************************************************************************************************
*                                              IDLE TASK
*
* Description: This task is internal to uC/OS-II and executes whenever no other higher priority tasks
*              executes because they are waiting for event(s) to occur.
*
* Arguments  : none
*
* Returns    : none
*********************************************************************************************************
*/

void OSTaskIdle (void *pdata)
{
    pdata = pdata;                               /* Prevent compiler warning for not using 'pdata'     */
    for (;;) {
        OS_ENTER_CRITICAL();
        OSIdleCtr++;
        OS_EXIT_CRITICAL();
    }
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                            STATISTICS TASK
*
* Description: This task is internal to uC/OS-II and is used to compute some statistics about the
*              multitasking environment.  Specifically, OSTaskStat() computes the CPU usage.
*              CPU usage is determined by:
*
*                                          OSIdleCtr
*                 OSCPUUsage = 100 * (1 - ------------)     (units are in %)
*                                         OSIdleCtrMax
*
* Arguments  : pdata     this pointer is not used at this time.
*
* Returns    : none
*
* Notes      : 1) This task runs at a priority level higher than the idle task.  In fact, it runs at the
*                 next higher priority, OS_IDLE_PRIO-1.
*              2) You can disable this task by setting the configuration #define OS_TASK_STAT_EN to 0.
*              3) We delay for 5 seconds in the beginning to allow the system to reach steady state and
*                 have all other tasks created before we do statistics.  You MUST have at least a delay
*                 of 2 seconds to allow for the system to establish the maximum value for the idle 
*                 counter.
*********************************************************************************************************
*/

#if OS_TASK_STAT_EN
void OSTaskStat (void *pdata)
{
    INT32U run;
    INT8S  usage;
    
    
    pdata = pdata;                               /* Prevent compiler warning for not using 'pdata'     */
    while (OSStatRdy == FALSE) {
        OSTimeDly(2 * OS_TICKS_PER_SEC);             /* Wait until statistic task is ready                 */
    }
    for (;;) {
        OS_ENTER_CRITICAL();
        OSIdleCtrRun = OSIdleCtr;                /* Obtain the of the idle counter for the past second */
        run          = OSIdleCtr;
        OSIdleCtr    = 0L;                       /* Reset the idle counter for the next second         */
        OS_EXIT_CRITICAL();
        if (OSIdleCtrMax > 0L) {
            usage = (INT8S)(100L - 100L * run / OSIdleCtrMax);
            if (usage > 100) {
                OSCPUUsage = 100;
            } else if (usage < 0) {
                OSCPUUsage =   0;
            } else {
                OSCPUUsage = usage;
            }
        } else {
            OSCPUUsage = 0;
        }
        OSTaskStatHook();                        /* Invoke user definable hook                         */
        OSTimeDly(OS_TICKS_PER_SEC);             /* Accumulate OSIdleCtr for the next second           */
    }
}
#endif
/*$PAGE*/
/*
*********************************************************************************************************
*                                            INITIALIZE TCB
*
* Description: This function is internal to uC/OS-II and is used to initialize a Task Control Block when
*              a task is created (see OSTaskCreate() and OSTaskCreateExt()).
*
* Arguments  : prio          is the priority of the task being created
*
*              ptos          is a pointer to the task's top-of-stack assuming that the CPU registers
*                            have been placed on the stack.  Note that the top-of-stack corresponds to a 
*                            'high' memory location is OS_STK_GROWTH is set to 1 and a 'low' memory
*                            location if OS_STK_GROWTH is set to 0.  Note that stack growth is CPU
*                            specific.
*
*              pbos          is a pointer to the bottom of stack.  A NULL pointer is passed if called by
*                            'OSTaskCreate()'.
*
*              id            is the task's ID (0..65535)
*
*              stk_size      is the size of the stack (in 'stack units').  If the stack units are INT8Us
*                            then, 'stk_size' contains the number of bytes for the stack.  If the stack
*                            units are INT32Us then, the stack contains '4 * stk_size' bytes.  The stack
*                            units are established by the #define constant OS_STK which is CPU
*                            specific.  'stk_size' is 0 if called by 'OSTaskCreate()'.
*
*              pext          is a pointer to a user supplied memory area that is used to extend the task
*                            control block.  This allows you to store the contents of floating-point
*                            registers, MMU registers or anything else you could find useful during a 
*                            context switch.  You can even assign a name to each task and store this name
*                            in this TCB extension.  A NULL pointer is passed if called by OSTaskCreate().
*
*              opt           options as passed to 'OSTaskCreateExt()' or, 
*                            0 if called from 'OSTaskCreate()'.
*
* Returns    : OS_NO_ERR         if the call was successful
*              OS_NO_MORE_TCB    if there are no more free TCBs to be allocated and thus, the task cannot
*                                be created.
*
* Note       : This function is INTERNAL to uC/OS-II and your application should not call it.
*********************************************************************************************************
*/

INT8U OSTCBInit (INT8U prio, OS_STK *ptos, OS_STK *pbos, INT16U id, INT16U stk_size, void *pext, INT16U opt)
{
    OS_TCB *ptcb;


    OS_ENTER_CRITICAL();
    ptcb = OSTCBFreeList;                                  /* Get a free TCB from the free TCB list    */
    if (ptcb != (OS_TCB *)0) {
        OSTCBFreeList        = ptcb->OSTCBNext;            /* Update pointer to free TCB list          */
        OS_EXIT_CRITICAL();
        ptcb->OSTCBStkPtr    = ptos;                       /* Load Stack pointer in TCB                */
        ptcb->OSTCBPrio      = (INT8U)prio;                /* Load task priority into TCB              */
        ptcb->OSTCBStat      = OS_STAT_RDY;                /* Task is ready to run                     */
        ptcb->OSTCBDly       = 0;                          /* Task is not delayed                      */

#if OS_TASK_CREATE_EXT_EN        
        ptcb->OSTCBExtPtr    = pext;                       /* Store pointer to TCB extension           */
        ptcb->OSTCBStkSize   = stk_size;                   /* Store stack size                         */
        ptcb->OSTCBStkBottom = pbos;                       /* Store pointer to bottom of stack         */
        ptcb->OSTCBOpt       = opt;                        /* Store task options                       */
        ptcb->OSTCBId        = id;                         /* Store task ID                            */
#else
        pext                 = pext;                       /* Prevent compiler warning if not used     */
        stk_size             = stk_size;
        pbos                 = pbos;
        opt                  = opt;
        id                   = id;
#endif

#if OS_TASK_DEL_EN        
        ptcb->OSTCBDelReq    = OS_NO_ERR;
#endif

        ptcb->OSTCBY         = prio >> 3;                  /* Pre-compute X, Y, BitX and BitY          */
        ptcb->OSTCBBitY      = OSMapTbl[ptcb->OSTCBY];
        ptcb->OSTCBX         = prio & 0x07;
        ptcb->OSTCBBitX      = OSMapTbl[ptcb->OSTCBX];

#if     OS_MBOX_EN || (OS_Q_EN && (OS_MAX_QS >= 2)) || OS_SEM_EN
        ptcb->OSTCBEventPtr  = (OS_EVENT *)0;              /* Task is not pending on an event          */
#endif

#if     OS_MBOX_EN || (OS_Q_EN && (OS_MAX_QS >= 2))
        ptcb->OSTCBMsg       = (void *)0;                  /* No message received                      */
#endif

        OS_ENTER_CRITICAL();
        OSTCBPrioTbl[prio]   = ptcb;
        ptcb->OSTCBNext      = OSTCBList;                  /* Link into TCB chain                      */
        ptcb->OSTCBPrev      = (OS_TCB *)0;
        if (OSTCBList != (OS_TCB *)0) {
            OSTCBList->OSTCBPrev = ptcb;
        }
        OSTCBList               = ptcb;
        OSRdyGrp               |= ptcb->OSTCBBitY;         /* Make task ready to run                   */
        OSRdyTbl[ptcb->OSTCBY] |= ptcb->OSTCBBitX;
        OS_EXIT_CRITICAL();
        return (OS_NO_ERR);
    } else {
        OS_EXIT_CRITICAL();
        return (OS_NO_MORE_TCB);
    }
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                         PROCESS SYSTEM TICK
*
* Description: This function is used to signal to uC/OS-II the occurrence of a 'system tick' (also known
*              as a 'clock tick').  This function should be called by the ticker ISR but, can also be
*              called by a high priority task.
*
* Arguments  : none
*
* Returns    : none
*********************************************************************************************************
*/

void OSTimeTick (void)
{
    OS_TCB *ptcb;


    OSTimeTickHook();                                      /* Call user definable hook                 */
    ptcb = OSTCBList;                                      /* Point at first TCB in TCB list           */
    while (ptcb->OSTCBPrio != OS_IDLE_PRIO) {              /* Go through all TCBs in TCB list          */
        OS_ENTER_CRITICAL();
        if (ptcb->OSTCBDly != 0) {                         /* Delayed or waiting for event with TO     */
            if (--ptcb->OSTCBDly == 0) {                   /* Decrement nbr of ticks to end of delay   */
                if (!(ptcb->OSTCBStat & OS_STAT_SUSPEND)) {    /* Is task suspended?                   */
                    OSRdyGrp               |= ptcb->OSTCBBitY; /* No,  Make task Rdy to Run (timed out)*/
                    OSRdyTbl[ptcb->OSTCBY] |= ptcb->OSTCBBitX;
                } else {                                       /* Yes, Leave 1 tick to prevent ...     */
                    ptcb->OSTCBDly = 1;                        /* ... loosing the task when the ...    */
                }                                              /* ... suspension is removed.           */
            }
        }
        ptcb = ptcb->OSTCBNext;                            /* Point at next TCB in TCB list            */
        OS_EXIT_CRITICAL();
    }
    OS_ENTER_CRITICAL();                                   /* Update the 32-bit tick counter           */
    OSTime++;
    OS_EXIT_CRITICAL();
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                             GET VERSION
*
* Description: This function is used to return the version number of uC/OS-II.  The returned value
*              corresponds to uC/OS-II's version number multiplied by 100.  In other words, version 2.00
*              would be returned as 200.
*
* Arguments  : none
*
* Returns    : the version number of uC/OS-II multiplied by 100.
*********************************************************************************************************
*/

INT16U OSVersion (void)
{
    return (OS_VERSION);
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久不卡网国产精品一区| 亚洲日本欧美天堂| 91丝袜国产在线播放| 日本免费新一区视频| 亚洲日本一区二区三区| 精品国产91洋老外米糕| 欧美久久久久中文字幕| 成人美女视频在线观看18| 久久成人免费电影| 亚洲成a人v欧美综合天堂| 国产精品理论片在线观看| 日韩精品中文字幕一区| 欧美日本在线看| 色www精品视频在线观看| 国产一区二区三区电影在线观看| 午夜视频一区二区| 一级中文字幕一区二区| 18欧美乱大交hd1984| 国产欧美日韩精品一区| 久久丝袜美腿综合| 久久亚区不卡日本| 精品理论电影在线| 日韩一区二区免费视频| 欧美日本一道本在线视频| 91麻豆国产福利精品| 成人综合日日夜夜| 国产iv一区二区三区| 国产一区二区看久久| 国产综合成人久久大片91| 麻豆国产一区二区| 六月丁香综合在线视频| 久久激情五月激情| 国产主播一区二区三区| 激情综合一区二区三区| 国产一区二区在线电影| 国产麻豆精品95视频| 激情综合五月天| 韩国三级在线一区| 国产一区二区女| 国产大陆a不卡| 福利一区二区在线| aaa欧美大片| 91免费在线看| 在线免费观看日本欧美| 欧美日韩国产高清一区二区| 欧美剧在线免费观看网站 | 国产午夜精品一区二区三区视频| 欧美成人乱码一区二区三区| 精品久久久久久久久久久久久久久| 国产精品高潮呻吟| 一区二区在线观看免费| 亚洲欧美日韩在线| 丝袜国产日韩另类美女| 麻豆国产精品官网| 成人性生交大片| 91网站黄www| 精品视频一区三区九区| 日韩你懂的在线播放| 亚洲精品在线免费播放| 中文字幕亚洲一区二区av在线| 亚洲男人电影天堂| 日av在线不卡| 成人久久18免费网站麻豆| 一本大道久久精品懂色aⅴ| 欧美日韩国产精选| 国产午夜亚洲精品不卡| 亚洲色欲色欲www| 蜜桃精品视频在线| 成人永久免费视频| 欧美日韩一级片网站| xnxx国产精品| 亚洲欧美日韩电影| 伦理电影国产精品| 色系网站成人免费| 精品美女一区二区三区| 亚洲精品高清视频在线观看| 日韩影院精彩在线| 成人av午夜影院| 91.麻豆视频| 成人欧美一区二区三区视频网页 | 精品一二线国产| 91蝌蚪porny九色| 欧美电视剧免费全集观看| 最好看的中文字幕久久| 日本va欧美va精品| 色悠悠久久综合| 久久网站最新地址| 日韩专区中文字幕一区二区| 成人午夜视频福利| 欧美成人艳星乳罩| 一区二区三区四区五区视频在线观看| 日本伊人精品一区二区三区观看方式| 成人av网址在线| 精品福利一区二区三区免费视频| 亚洲精品成人天堂一二三| 国产乱码精品一区二区三| 5566中文字幕一区二区电影| 亚洲色图第一区| 国产精品91一区二区| 日韩一区二区三区视频在线观看| 亚洲欧美视频在线观看视频| 国模少妇一区二区三区| 欧美一区二区网站| 一区二区视频在线| 成人午夜电影久久影院| 日韩一级欧美一级| 香蕉成人啪国产精品视频综合网| 成人av资源下载| 久久麻豆一区二区| 韩国三级在线一区| 日韩欧美在线网站| 亚洲va欧美va人人爽| 一本色道久久综合亚洲91| 欧美国产日韩亚洲一区| 国产精品一区二区无线| 欧美tk—视频vk| 视频一区二区三区中文字幕| 在线观看国产日韩| 亚洲精品中文在线影院| 91一区二区三区在线播放| 国产欧美精品一区二区色综合| 精品亚洲欧美一区| 日韩一区二区中文字幕| 日日摸夜夜添夜夜添亚洲女人| 国产欧美综合色| 粉嫩aⅴ一区二区三区四区五区| 精品美女一区二区| 国内精品写真在线观看| 精品久久久久久久久久久久包黑料| 亚洲高清免费观看| 欧美久久一区二区| 日韩成人一区二区三区在线观看| 欧美精品乱码久久久久久| 无码av免费一区二区三区试看| 欧美亚洲精品一区| 天天做天天摸天天爽国产一区| 欧美午夜不卡视频| 日韩高清不卡一区二区三区| 91精选在线观看| 另类调教123区| 久久久久久**毛片大全| 成人深夜福利app| 自拍偷拍亚洲欧美日韩| 欧美性生活久久| 日韩电影免费一区| 精品福利视频一区二区三区| 国产99久久久国产精品免费看 | 国产亚洲欧美日韩日本| 国产·精品毛片| 亚洲欧美日韩国产一区二区三区| 91黄色激情网站| 蜜桃久久av一区| 国产女同互慰高潮91漫画| 97精品电影院| 天天色天天操综合| 欧美不卡在线视频| 成人美女视频在线观看| 亚洲综合激情另类小说区| 欧美一级午夜免费电影| 岛国av在线一区| 亚洲国产成人av| 欧美精品一区二区三区四区 | 7777女厕盗摄久久久| 狠狠色丁香久久婷婷综合_中| 中文字幕精品一区| 精品视频在线视频| 国产精品一二三区| 亚洲一区中文日韩| 精品国产sm最大网站免费看| 不卡视频免费播放| 日韩在线观看一区二区| 久久精品免费在线观看| 日本乱人伦一区| 国产在线精品一区二区不卡了| 中文字幕中文乱码欧美一区二区 | 欧美电视剧免费观看| 波多野结衣亚洲一区| 五月开心婷婷久久| 国产精品毛片高清在线完整版| 欧美午夜寂寞影院| 成人一二三区视频| 视频在线观看一区| 国产精品久久久一本精品| 欧美二区乱c少妇| 成人高清免费观看| 免费一区二区视频| 亚洲美女淫视频| 日韩精品在线一区二区| 91久久精品一区二区| 国产一本一道久久香蕉| 午夜亚洲国产au精品一区二区| 欧美激情在线免费观看| 91精品欧美一区二区三区综合在| 99热这里都是精品| 国产毛片一区二区| 免费成人av在线| 亚洲国产中文字幕在线视频综合| 久久九九久久九九| 日韩一卡二卡三卡四卡| 欧美视频一区二区三区四区|