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

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

?? os_core.c

?? 51單片機上移植UCOSII,通過調試
?? C
?? 第 1 頁 / 共 4 頁
字號:
/*
*********************************************************************************************************
*                                                uC/OS-II
*                                          The Real-Time Kernel
*                                             CORE FUNCTIONS
*
*                          (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL
*                                           All Rights Reserved
*
* File : OS_CORE.C
* By   : Jean J. Labrosse
*********************************************************************************************************
*/

#ifndef  OS_MASTER_FILE
#define  OS_GLOBALS
#include "includes.h"
#endif

/*
*********************************************************************************************************
*                              MAPPING TABLE TO MAP BIT POSITION TO BIT MASK
*
* Note: Index into table is desired bit position, 0..7
*       Indexed value corresponds to bit mask
*********************************************************************************************************
*/

INT8U  const  OSMapTbl[]   = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};

/*
*********************************************************************************************************
*                                       PRIORITY RESOLUTION TABLE
*
* Note: Index into table is bit pattern to resolve highest priority
*       Indexed value corresponds to highest priority bit position (i.e. 0..7)
*********************************************************************************************************
*/

INT8U  const  OSUnMapTbl[] = {
    0, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x00 to 0x0F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x10 to 0x1F                             */
    5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x20 to 0x2F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x30 to 0x3F                             */
    6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x40 to 0x4F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x50 to 0x5F                             */
    5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x60 to 0x6F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x70 to 0x7F                             */
    7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x80 to 0x8F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x90 to 0x9F                             */
    5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xA0 to 0xAF                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xB0 to 0xBF                             */
    6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xC0 to 0xCF                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xD0 to 0xDF                             */
    5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xE0 to 0xEF                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0        /* 0xF0 to 0xFF                             */
};

/*
*********************************************************************************************************
*                                       FUNCTION PROTOTYPES
*********************************************************************************************************
*/
static  void  OS_InitEventList(void) LG_REENTRANT;
static  void  OS_InitMisc(void) LG_REENTRANT;
static  void  OS_InitRdyList(void) LG_REENTRANT;
static  void  OS_InitTaskIdle(void) LG_REENTRANT;
static  void  OS_InitTaskStat(void) LG_REENTRANT;
static  void  OS_InitTCBList(void) LG_REENTRANT;

/*$PAGE*/
/*
*********************************************************************************************************
*                                             INITIALIZATION
*
* Description: This function is used to initialize the internals of uC/OS-II and MUST be called prior to
*              creating any uC/OS-II object and, prior to calling OSStart().
*
* Arguments  : none
*
* Returns    : none
*********************************************************************************************************
*/

void  OSInit (void) LG_REENTRANT
{
#if OS_VERSION >= 204
    OSInitHookBegin();                                           /* Call port specific initialization code   */
#endif

    OS_InitMisc();                                               /* Initialize miscellaneous variables       */

    OS_InitRdyList();                                            /* Initialize the Ready List                */
    OS_InitTCBList();                                            /* Initialize the free list of OS_TCBs      */
    OS_InitEventList();                                          /* Initialize the free list of OS_EVENTs    */

#if (OS_VERSION >= 251) && (OS_FLAG_EN > 0) && (OS_MAX_FLAGS > 0)
    OS_FlagInit();                                               /* Initialize the event flag structures     */
#endif

#if (OS_MEM_EN > 0) && (OS_MAX_MEM_PART > 0)
    OS_MemInit();                                                /* Initialize the memory manager            */
#endif

#if (OS_Q_EN > 0) && (OS_MAX_QS > 0)
    OS_QInit();                                                  /* Initialize the message queue structures  */
#endif

    OS_InitTaskIdle();                                           /* Create the Idle Task                     */
#if OS_TASK_STAT_EN > 0
    OS_InitTaskStat();                                           /* Create the Statistic Task                */
#endif

#if OS_VERSION >= 204
    OSInitHookEnd();                                             /* Call port specific init. code            */
#endif
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                              ENTER ISR
*
* Description: This function is used to notify uC/OS-II that you are about to service an interrupt
*              service routine (ISR).  This allows uC/OS-II to keep track of interrupt nesting and thus
*              only perform rescheduling at the last nested ISR.
*
* Arguments  : none
*
* Returns    : none
*
* Notes      : 1) This function should be called ith interrupts already disabled
*              2) Your ISR can directly increment OSIntNesting without calling this function because
*                 OSIntNesting has been declared 'global'.  
*              3) You MUST still call OSIntExit() even though you increment OSIntNesting directly.
*              4) You MUST invoke OSIntEnter() and OSIntExit() in pair.  In other words, for every call
*                 to OSIntEnter() at the beginning of the ISR you MUST have a call to OSIntExit() at the
*                 end of the ISR.
*              5) You are allowed to nest interrupts up to 255 levels deep.
*              6) I removed the OS_ENTER_CRITICAL() and OS_EXIT_CRITICAL() around the increment because
*                 OSIntEnter() is always called with interrupts disabled.
*********************************************************************************************************
*/

void  OSIntEnter (void) LG_REENTRANT
{
    if (OSRunning == TRUE) {
        if (OSIntNesting < 255) {
            OSIntNesting++;                      /* Increment ISR nesting level                        */
        }
    }
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                               EXIT ISR
*
* Description: This function is used to notify uC/OS-II that you have completed serviving an ISR.  When
*              the last nested ISR has completed, uC/OS-II will call the scheduler to determine whether
*              a new, high-priority task, is ready to run.
*
* Arguments  : none
*
* Returns    : none
*
* Notes      : 1) You MUST invoke OSIntEnter() and OSIntExit() in pair.  In other words, for every call
*                 to OSIntEnter() at the beginning of the ISR you MUST have a call to OSIntExit() at the
*                 end of the ISR.
*              2) Rescheduling is prevented when the scheduler is locked (see OS_SchedLock())
*********************************************************************************************************
*/

void  OSIntExit (void) LG_REENTRANT
{
#if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
    OS_CPU_SR  cpu_sr;
#endif
    
    
    if (OSRunning == TRUE) {
        OS_ENTER_CRITICAL();
        if (OSIntNesting > 0) {                            /* Prevent OSIntNesting from wrapping       */
            OSIntNesting--;
        }
        if ((OSIntNesting == 0) && (OSLockNesting == 0)) { /* Reschedule only if all ISRs complete ... */
            OSIntExitY    = OSUnMapTbl[OSRdyGrp];          /* ... and not locked.                      */
            OSPrioHighRdy = (INT8U)((OSIntExitY << 3) + OSUnMapTbl[OSRdyTbl[OSIntExitY]]);
            if (OSPrioHighRdy != OSPrioCur) {              /* No Ctx Sw if current task is highest rdy */
                OSTCBHighRdy  = OSTCBPrioTbl[OSPrioHighRdy];
                OSCtxSwCtr++;                              /* Keep track of the number of ctx switches */
                OSIntCtxSw();                              /* Perform interrupt level ctx switch       */
            }
        }
        OS_EXIT_CRITICAL();
    }
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                          PREVENT SCHEDULING
*
* Description: This function is used to prevent rescheduling to take place.  This allows your application
*              to prevent context switches until you are ready to permit context switching.
*
* Arguments  : none
*
* Returns    : none
*
* Notes      : 1) You MUST invoke OSSchedLock() and OSSchedUnlock() in pair.  In other words, for every
*                 call to OSSchedLock() you MUST have a call to OSSchedUnlock().
*********************************************************************************************************
*/

#if OS_SCHED_LOCK_EN > 0
void  OSSchedLock (void) LG_REENTRANT
{
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR  cpu_sr;
#endif    
    
    
    if (OSRunning == TRUE) {                     /* Make sure multitasking is running                  */
        OS_ENTER_CRITICAL();
        if (OSLockNesting < 255) {               /* Prevent OSLockNesting from wrapping back to 0      */
            OSLockNesting++;                     /* Increment lock nesting level                       */
        }
        OS_EXIT_CRITICAL();
    }
}
#endif    

/*$PAGE*/
/*
*********************************************************************************************************
*                                          ENABLE SCHEDULING
*
* Description: This function is used to re-allow rescheduling.
*
* Arguments  : none
*
* Returns    : none
*
* Notes      : 1) You MUST invoke OSSchedLock() and OSSchedUnlock() in pair.  In other words, for every
*                 call to OSSchedLock() you MUST have a call to OSSchedUnlock().
*********************************************************************************************************
*/

#if OS_SCHED_LOCK_EN > 0
void  OSSchedUnlock (void) LG_REENTRANT
{
#if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
    OS_CPU_SR  cpu_sr;
#endif    
    
    
    if (OSRunning == TRUE) {                                   /* Make sure multitasking is running    */
        OS_ENTER_CRITICAL();
        if (OSLockNesting > 0) {                               /* Do not decrement if already 0        */
            OSLockNesting--;                                   /* Decrement lock nesting level         */
            if ((OSLockNesting == 0) && (OSIntNesting == 0)) { /* See if sched. enabled and not an ISR */
                OS_EXIT_CRITICAL();
                OS_Sched();                                    /* See if a HPT is ready                */
            } else {
                OS_EXIT_CRITICAL();
            }
        } else {
            OS_EXIT_CRITICAL();
        }
    }
}
#endif    

/*$PAGE*/
/*
*********************************************************************************************************
*                                          START MULTITASKING
*
* Description: This function is used to start the multitasking process which lets uC/OS-II manages the

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一区专区| 亚洲精选视频在线| 精品一区二区三区日韩| 欧美精品在线观看播放| 亚洲国产精品综合小说图片区| 成人app在线观看| 中文字幕二三区不卡| 国产传媒一区在线| 69堂成人精品免费视频| 偷窥国产亚洲免费视频| 337p亚洲精品色噜噜| 视频一区二区中文字幕| 日韩一区二区三区免费看| 日韩国产精品大片| 日韩欧美激情在线| 久久黄色级2电影| 久久久久久久久久电影| 国产精品白丝jk黑袜喷水| 欧美激情艳妇裸体舞| 色综合天天天天做夜夜夜夜做| 欧美精品一区二区高清在线观看| 精品中文字幕一区二区小辣椒| 久久色视频免费观看| 国产成人精品综合在线观看| 国产精品美女久久久久久久久| 国产主播一区二区三区| 国产欧美日韩精品一区| 94色蜜桃网一区二区三区| 亚洲精品免费电影| 91精品国产aⅴ一区二区| 精东粉嫩av免费一区二区三区| 91精选在线观看| 精品一区中文字幕| 国产欧美日韩精品一区| 色系网站成人免费| 奇米精品一区二区三区在线观看一 | 91成人网在线| 麻豆91免费观看| 亚洲乱码精品一二三四区日韩在线| 日韩一二三区视频| 色久综合一二码| 国产精品夜夜嗨| 午夜av一区二区三区| 中文字幕一区二区三中文字幕| 欧美二区乱c少妇| 成人免费毛片app| 久久精品国产网站| 亚洲国产精品久久人人爱蜜臀| 久久精品这里都是精品| 欧美麻豆精品久久久久久| www.99精品| 国产一区二区三区免费观看| 五月天欧美精品| 亚洲视频香蕉人妖| 欧美激情一区三区| 久久嫩草精品久久久精品一| 欧美一级二级三级乱码| 欧美日韩精品三区| 色婷婷国产精品| jlzzjlzz亚洲女人18| 国产大陆亚洲精品国产| 韩国女主播成人在线| 麻豆一区二区三| 麻豆精品一区二区综合av| 婷婷激情综合网| 一区二区三区美女视频| 亚洲精品中文字幕乱码三区| 亚洲欧洲日产国码二区| 国产欧美日韩一区二区三区在线观看| 日韩精品一区二区三区四区视频| 欧美人牲a欧美精品| 欧美精品一级二级| 欧美精品777| 欧美精品v国产精品v日韩精品| 欧美日韩亚洲国产综合| 欧美性xxxxxxxx| 欧美日韩在线播放| 欧美裸体bbwbbwbbw| 欧美日韩免费一区二区三区视频| 色乱码一区二区三区88| 91久久精品网| 91国偷自产一区二区三区成为亚洲经典 | 884aa四虎影成人精品一区| 欧美日韩国产欧美日美国产精品| 欧美视频第二页| 正在播放亚洲一区| 欧美成人一区二区三区| 久久色中文字幕| 国产精品视频在线看| 亚洲视频免费观看| 亚洲国产精品麻豆| 秋霞成人午夜伦在线观看| 极品少妇xxxx精品少妇| 国产电影一区在线| 色综合久久精品| 欧美日韩aaaaaa| 精品人在线二区三区| 国产亚洲一区二区三区| 中文字幕一区二区三| 亚洲一区二区三区激情| 久久精品国产秦先生| 国产成人午夜99999| 色婷婷精品大视频在线蜜桃视频 | 久久精品久久精品| 懂色av一区二区三区蜜臀| 成人av综合在线| 欧美系列一区二区| 欧美精品一区二区三区很污很色的| 欧美精品一区二区三区一线天视频 | 亚洲一区二区三区视频在线播放| 日韩成人伦理电影在线观看| 国产高清亚洲一区| 91激情在线视频| 亚洲精品在线免费观看视频| 亚洲日本青草视频在线怡红院| 日韩电影免费在线| 成人av在线影院| 3d成人h动漫网站入口| 日本一区二区高清| 日韩精品乱码免费| 99免费精品在线观看| 日韩视频一区二区在线观看| 中文字幕在线不卡一区| 蜜臀av亚洲一区中文字幕| 91香蕉国产在线观看软件| 日韩欧美一区在线观看| 亚洲欧美偷拍卡通变态| 国模无码大尺度一区二区三区| 欧美在线制服丝袜| 欧美国产综合色视频| 免费不卡在线视频| 在线观看免费成人| 国产精品国产三级国产有无不卡 | 国产69精品久久777的优势| 欧美福利一区二区| 一色桃子久久精品亚洲| 国产在线精品一区二区| 欧美片网站yy| 亚洲精品美腿丝袜| 成人av资源在线| 久久久欧美精品sm网站| 奇米精品一区二区三区在线观看一 | 久久草av在线| 91麻豆精品国产自产在线| 亚洲精品写真福利| 99久久国产综合色|国产精品| wwwwww.欧美系列| 蜜乳av一区二区| 91精品综合久久久久久| 午夜私人影院久久久久| 色婷婷综合激情| 亚洲色图一区二区三区| 成人国产精品免费| 国产三级三级三级精品8ⅰ区| 久久机这里只有精品| 欧美一区二区观看视频| 首页国产丝袜综合| 欧美日韩免费观看一区三区| 一区二区成人在线视频| 色狠狠色狠狠综合| 国产精品国产三级国产普通话99| 成人中文字幕合集| 久久精品免费在线观看| 国产精品综合av一区二区国产馆| 日韩精品一区二区三区在线| 美国精品在线观看| 亚洲精品一区二区三区在线观看| 蜜桃视频一区二区| 精品久久国产字幕高潮| 国产又黄又大久久| 国产亚洲精久久久久久| 成人午夜又粗又硬又大| 最新久久zyz资源站| 91免费国产在线| 一区二区三区四区蜜桃| 欧美中文一区二区三区| 天堂va蜜桃一区二区三区| 日韩视频一区二区三区| 国产一区二区久久| 国产欧美日韩麻豆91| 99国产欧美另类久久久精品| 亚洲人成亚洲人成在线观看图片 | 亚洲柠檬福利资源导航| 91成人在线精品| 日韩av电影免费观看高清完整版在线观看| 欧美精品久久天天躁| 国产综合久久久久久鬼色| 欧美激情一区二区三区| 色久综合一二码| 免费一级欧美片在线观看| 久久精品日产第一区二区三区高清版| 岛国精品在线播放| 亚洲激情网站免费观看| 欧美一区二区精美| 成人综合婷婷国产精品久久| 亚洲综合激情小说| 久久久精品综合| 日本高清不卡aⅴ免费网站| 蜜桃精品视频在线| 国产精品久久久久三级|