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

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

?? os_core.c

?? 我 Porting 的 uC/OS-II V2.84 (目前Micrium)最新版之 Keil C51 工程,專供給 8051 上做任務調度,我已將 Code Size 改小至 4000 Byte,對
?? C
?? 第 1 頁 / 共 5 頁
字號:
*/

static  void  OS_SchedNew (void)
{
#if OS_LOWEST_PRIO <= 63                         /* See if we support up to 64 tasks                   */
    INT8U   y; 

    y             = OSUnMapTbl[OSRdyGrp];
    OSPrioHighRdy = (INT8U)((y << 3) + OSUnMapTbl[OSRdyTbl[y]]);
#else                                            /* We support up to 256 tasks                         */
    INT8U   y;
    INT16U *ptbl;


    if ((OSRdyGrp & 0xFF) != 0) {
        y = OSUnMapTbl[OSRdyGrp & 0xFF];
    } else {
        y = OSUnMapTbl[(OSRdyGrp >> 8) & 0xFF] + 8;
    }
    ptbl = &OSRdyTbl[y];
    if ((*ptbl & 0xFF) != 0) {
        OSPrioHighRdy = (INT8U)((y << 4) + OSUnMapTbl[(*ptbl & 0xFF)]);
    } else {
        OSPrioHighRdy = (INT8U)((y << 4) + OSUnMapTbl[(*ptbl >> 8) & 0xFF] + 8);
    }
#endif
}

/*$PAGE*/
/*
*********************************************************************************************************
*                                        COPY AN ASCII STRING
*
* Description: This function is called by other uC/OS-II services to copy an ASCII string from a 'source'
*              string to a 'destination' string.
*
* Arguments  : pdest    is a pointer to the string that will be receiving the copy.  Note that there MUST
*                       be sufficient space in the destination storage area to receive this string.
*
*              psrc     is a pointer to the source string.  The source string MUST NOT be greater than
*                       254 characters.
*
* Returns    : The size of the string (excluding the NUL terminating character)
*
* Notes      : 1) This function is INTERNAL to uC/OS-II and your application should not call it.
*********************************************************************************************************
*/

#if (OS_EVENT_NAME_SIZE > 1) || (OS_FLAG_NAME_SIZE > 1) || (OS_MEM_NAME_SIZE > 1) || (OS_TASK_NAME_SIZE > 1) || (OS_TMR_CFG_NAME_SIZE > 1)
INT8U  OS_StrCopy (INT8U *pdest, INT8U *psrc)  reentrant
{
    INT8U  len;
    len = 0;
    while (*psrc != OS_ASCII_NUL) {
        *pdest++ = *psrc++;
        len++;
    }
    *pdest = OS_ASCII_NUL;
    return (len);
}
#endif

/*$PAGE*/
/*
*********************************************************************************************************
*                                DETERMINE THE LENGTH OF AN ASCII STRING
*
* Description: This function is called by other uC/OS-II services to determine the size of an ASCII string
*              (excluding the NUL character).
*
* Arguments  : psrc     is a pointer to the string for which we need to know the size.
*
* Returns    : The size of the string (excluding the NUL terminating character)
*
* Notes      : 1) This function is INTERNAL to uC/OS-II and your application should not call it.
*              2) The string to check must be less than 255 characters long.
*********************************************************************************************************
*/

#if (OS_EVENT_NAME_SIZE > 1) || (OS_FLAG_NAME_SIZE > 1) || (OS_MEM_NAME_SIZE > 1) || (OS_TASK_NAME_SIZE > 1) || (OS_TMR_CFG_NAME_SIZE > 1)
INT8U  OS_StrLen (INT8U *psrc) reentrant
{
    INT8U  len;
    len = 0;
    while (*psrc != OS_ASCII_NUL) {
        psrc++;
        len++;
    }
    return (len);
}
#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 ALL waiting for event(s) to occur.
*
* Arguments  : none
*
* Returns    : none
*
* Note(s)    : 1) OSTaskIdleHook() is called after the critical section to ensure that interrupts will be
*                 enabled for at least a few instructions.  On some processors (ex. Philips XA), enabling
*                 and then disabling interrupts didn't allow the processor enough time to have interrupts
*                 enabled before they were disabled again.  uC/OS-II would thus never recognize
*                 interrupts.
*              2) This hook has been added to allow you to do such things as STOP the CPU to conserve
*                 power.
*********************************************************************************************************
*/

void  OS_TaskIdle (void *p_arg) reentrant
{
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR  cpu_sr = 0;
#endif

    p_arg = p_arg;                                 /* Prevent compiler warning for not using 'parg'      */
    for (;;) {
        OS_ENTER_CRITICAL();
        OSIdleCtr++;
        OS_EXIT_CRITICAL();
        
		#if OS_CPU_HOOKS_EN 
		  OSTaskIdleHook();                        /* Call user definable HOOK                           */
		#endif
    }
}

/*$PAGE*/
/*
*********************************************************************************************************
*                                            STATISTICS TASK
*
* Description: This task is internal to uC/OS-II and is used to compute some statistics about the
*              multitasking environment.  Specifically, OS_TaskStat() computes the CPU usage.
*              CPU usage is determined by:
*
*                                          OSIdleCtr
*                 OSCPUUsage = 100 * (1 - ------------)     (units are in %)
*                                         OSIdleCtrMax
*
* Arguments  : parg     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_TASK_IDLE_PRIO-1.
*              2) You can disable this task by setting the configuration #define OS_TASK_STAT_EN to 0.
*              3) You MUST have at least a delay of 2/10 seconds to allow for the system to establish the
*                 maximum value for the idle counter.
*********************************************************************************************************
*/

#if OS_TASK_STAT_EN > 0
void  OS_TaskStat (void *p_arg)	 reentrant
{
    INT32U     run;
    INT32U     max;
    INT8S      usage;
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR  cpu_sr = 0;
#endif 

    p_arg = p_arg;                               /* Prevent compiler warning for not using 'parg'      */
    while (OSStatRdy == OS_FALSE) {
        OSTimeDly(2 * OS_TICKS_PER_SEC / 10);    /* Wait until statistic task is ready                 */
    }
    max = OSIdleCtrMax / 100L;
    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 (max > 0L) {
            usage = (INT8S)(100L - run / max);
            if (usage >= 0) {                    /* Make sure we don't have a negative percentage      */
                OSCPUUsage = usage;
            } else {
                OSCPUUsage = 0;
            }
        } else {
            OSCPUUsage = 0;
            max        = OSIdleCtrMax / 100L;
        }
        
		
		#ifdef OS_CPU_HOOKS_EN    /*this line is added by roguebear   */
		    OSTaskStatHook();                        /* Invoke user definable hook                         */
	    #endif					  /*this line is added by roguebear   */



#if (OS_TASK_STAT_STK_CHK_EN > 0) && (OS_TASK_CREATE_EXT_EN > 0)
        OS_TaskStatStkChk();                     /* Check the stacks for each task                     */
#endif
        OSTimeDly(OS_TICKS_PER_SEC / 10);        /* Accumulate OSIdleCtr for the next 1/10 second      */
    }
}
#endif

/*$PAGE*/
/*
*********************************************************************************************************
*                                      CHECK ALL TASK STACKS
*
* Description: This function is called by OS_TaskStat() to check the stacks of each active task.
*
* Arguments  : none
*
* Returns    : none
*********************************************************************************************************
*/

#if (OS_TASK_STAT_STK_CHK_EN > 0) && (OS_TASK_CREATE_EXT_EN > 0)
void  OS_TaskStatStkChk (void)  reentrant
{
    OS_TCB      *ptcb;
    OS_STK_DATA  stk_data;
    INT8U        err;
    INT8U        prio;

    for (prio = 0; prio <= OS_TASK_IDLE_PRIO; prio++) {
        err = OSTaskStkChk(prio, &stk_data);
        if (err == OS_NO_ERR) {
            ptcb = OSTCBPrioTbl[prio];
            if (ptcb != (OS_TCB *)0) {                               /* Make sure task 'ptcb' is ...   */
                if (ptcb != (OS_TCB *)1) {                           /* ... still valid.               */
#if OS_TASK_PROFILE_EN > 0
                    #if OS_STK_GROWTH == 1
                    ptcb->OSTCBStkBase = ptcb->OSTCBStkBottom + ptcb->OSTCBStkSize;
                    #else
                    ptcb->OSTCBStkBase = ptcb->OSTCBStkBottom - ptcb->OSTCBStkSize;
                    #endif
                    ptcb->OSTCBStkUsed = stk_data.OSUsed;            /* Store the number of bytes used */
#endif
                }
            }
        }
    }
}
#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  OS_TCBInit (INT8U prio, OS_STK *ptos, OS_STK *pbos, INT16U id, INT32U stk_size, void *pext, INT16U opt) reentrant
{
    OS_TCB    *ptcb;
#if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
    OS_CPU_SR  cpu_sr = 0;
#endif

    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;                   

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区在线观看视频| 国内精品不卡在线| 一区二区激情小说| 亚洲视频一二区| 亚洲欧洲日产国产综合网| 欧美韩国日本综合| 国产精品国产三级国产普通话蜜臀 | 久久久久久久国产精品影院| 欧美在线视频全部完| 国产精品一二一区| 蜜桃av噜噜一区| 精品无码三级在线观看视频| 激情欧美一区二区三区在线观看| 韩国精品一区二区| 国产成人av电影| 91在线观看一区二区| 91日韩在线专区| 欧美日韩在线一区二区| 91精品视频网| 久久先锋资源网| 中文字幕一区日韩精品欧美| 亚洲欧美日韩国产综合在线| 亚洲美女一区二区三区| 爽好久久久欧美精品| 久久精品二区亚洲w码| 国产精品性做久久久久久| 成人精品小蝌蚪| 在线免费观看日本一区| 欧美精品黑人性xxxx| 精品成人佐山爱一区二区| 国产人久久人人人人爽| 一级中文字幕一区二区| 人妖欧美一区二区| 国产成人免费9x9x人网站视频| 色综合久久六月婷婷中文字幕| 欧美日韩卡一卡二| 国产性做久久久久久| 亚洲综合在线视频| 黄页网站大全一区二区| 91色视频在线| 日韩精品资源二区在线| 国产精品福利一区二区| 日韩电影在线观看一区| 国产成人综合视频| 欧美日韩久久不卡| 欧美国产日韩精品免费观看| 亚洲成av人片一区二区三区| 国产一区二区精品久久99| 日本二三区不卡| 26uuu色噜噜精品一区二区| 亚洲欧美日韩电影| 国内精品在线播放| 欧美日韩在线免费视频| 国产精品网曝门| 老司机精品视频线观看86| 97se亚洲国产综合自在线| 日韩欧美国产综合一区| 亚洲免费观看高清完整版在线 | 92精品国产成人观看免费| 欧美一区二区三区日韩视频| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆 | 国产精品欧美一区二区三区| 日韩在线一区二区三区| 色综合色综合色综合| 久久精品日产第一区二区三区高清版| 亚洲精品菠萝久久久久久久| 国产一区二区电影| 制服丝袜亚洲精品中文字幕| 亚洲欧美一区二区三区久本道91| 精品午夜一区二区三区在线观看| 欧美日韩国产a| 亚洲欧洲av一区二区三区久久| 国产综合色产在线精品| 欧美一区二区三区色| 亚洲h在线观看| 欧日韩精品视频| 亚洲人成精品久久久久| 成人性生交大片| 2023国产精华国产精品| 日本不卡123| 欧美精品在线一区二区三区| 一区二区三区在线观看网站| av不卡一区二区三区| 国产丝袜欧美中文另类| 久久成人羞羞网站| 欧美一区二区三区的| 亚洲成年人影院| 欧洲生活片亚洲生活在线观看| 亚洲少妇30p| 91免费观看视频| 中文字幕中文乱码欧美一区二区 | 一本一道久久a久久精品| 国产精品伦理在线| 成人短视频下载 | 国产91精品精华液一区二区三区 | 一区二区三区久久久| 一本大道av伊人久久综合| 日韩一区在线免费观看| 成人免费看片app下载| 国产精品免费久久| 成人精品免费看| 中文字幕一区av| 色婷婷综合五月| 亚洲卡通动漫在线| 在线一区二区视频| 亚洲高清免费一级二级三级| 欧美精品在线观看播放| 日本怡春院一区二区| 日韩精品资源二区在线| 国产精品18久久久久久久久久久久| 久久日一线二线三线suv| 粉嫩一区二区三区在线看| 国产精品日日摸夜夜摸av| 99久久国产免费看| 亚洲一区二区av电影| 欧美精品亚洲二区| 精品一区二区三区日韩| 亚洲国产精品高清| 一本一本大道香蕉久在线精品 | 亚洲精品免费在线观看| 欧美日韩一区久久| 日本少妇一区二区| 精品99999| 成人av综合一区| 一区二区激情小说| 日韩美女天天操| 成人天堂资源www在线| 亚洲一区二区三区四区在线免费观看| 69p69国产精品| 国产成人精品免费网站| 亚洲女同女同女同女同女同69| 欧美色图激情小说| 国产一区二三区好的| 中文字幕一区二区三| 欧美日韩激情一区二区三区| 久草中文综合在线| 日韩码欧中文字| 91精品国产综合久久精品app| 久久国产剧场电影| 亚洲色图第一区| 日韩区在线观看| 9久草视频在线视频精品| 午夜精品久久久久久久99水蜜桃| 欧美变态tickle挠乳网站| 97超碰欧美中文字幕| 久久精品国产99国产| 亚洲丝袜制服诱惑| 日韩欧美综合在线| 色婷婷综合久久久中文字幕| 极品瑜伽女神91| 一区二区在线观看视频在线观看| 制服丝袜一区二区三区| av激情成人网| 美腿丝袜亚洲三区| 一区二区三区在线免费观看| 欧美成人vps| 欧美在线视频日韩| 国产九色精品成人porny| 亚洲一区视频在线| 欧美国产精品一区二区三区| 欧美日韩国产精品成人| 菠萝蜜视频在线观看一区| 精品综合久久久久久8888| 亚洲一区二区三区免费视频| 国产欧美日韩激情| 日韩午夜三级在线| 91成人在线免费观看| 成人夜色视频网站在线观看| 日本伊人色综合网| 亚洲综合网站在线观看| 中文字幕av不卡| 亚洲精品一区二区精华| 91麻豆精品国产91久久久资源速度 | 高清日韩电视剧大全免费| 老司机一区二区| 首页国产欧美日韩丝袜| 亚洲色图在线播放| 国产欧美日韩视频一区二区| 欧美成人a在线| 在线播放国产精品二区一二区四区| 91麻豆精品秘密| 成人av资源网站| 国产v日产∨综合v精品视频| 男女男精品视频网| 午夜精品福利一区二区三区av | 中文字幕在线一区| 国产欧美一区二区精品性色超碰| 日韩欧美国产不卡| 4438成人网| 欧美日韩国产综合久久| 在线看不卡av| 色婷婷av一区二区三区之一色屋| 成人免费视频网站在线观看| 国产精品资源网站| 精品一区二区三区免费观看 | 91免费国产在线观看| 91美女片黄在线观看91美女| 波多野结衣亚洲| jvid福利写真一区二区三区| 国产91丝袜在线播放|