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

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

?? os_core.c

?? 周立功LPC2200系列ARM課件。課件內容含有動畫、內容詳細具體
?? 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);
static  void  OS_InitMisc(void);
static  void  OS_InitRdyList(void);
static  void  OS_InitTaskIdle(void);
static  void  OS_InitTaskStat(void);
static  void  OS_InitTCBList(void);

/*$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)
{
#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)
{
    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)
{
#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)
{
#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)
{
#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
*              task that you have created.  Before you can call OSStart(), you MUST have called OSInit()

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
伊人一区二区三区| 国产中文字幕一区| 九九**精品视频免费播放| 99久久精品情趣| 91精品国产免费| 国产精品国产三级国产普通话蜜臀 | 99热99精品| 日韩精品专区在线影院重磅| 亚洲国产wwwccc36天堂| 成人性视频网站| 日韩一级片在线播放| 亚洲午夜在线视频| 92精品国产成人观看免费| 久久综合九色综合97_久久久| 亚洲激情图片qvod| 成人福利电影精品一区二区在线观看| 日韩欧美123| 婷婷综合久久一区二区三区| 91社区在线播放| 国产精品电影一区二区| 国产尤物一区二区在线| 精品国产乱码久久久久久1区2区| 丝袜亚洲另类欧美| 欧美少妇bbb| 一区二区三区在线视频观看 | 国产精品少妇自拍| 国产又黄又大久久| 久久久亚洲精品石原莉奈 | 亚洲国产成人tv| 91在线视频免费观看| 中文字幕成人在线观看| 国产999精品久久久久久| 2020国产精品| 国产98色在线|日韩| 国产精品伦一区二区三级视频| 成人免费视频视频在线观看免费 | 福利视频网站一区二区三区| 久久久精品人体av艺术| 国产精品亚洲专一区二区三区| 国产日韩欧美在线一区| 成人激情文学综合网| 亚洲欧美自拍偷拍| 在线看国产一区| 亚洲国产精品一区二区尤物区| 欧美剧在线免费观看网站 | 亚洲国产一二三| 欧美日韩在线播| 奇米色一区二区| 精品国产一二三区| 国产不卡视频一区二区三区| 亚洲日本免费电影| 欧美久久一二区| 久久91精品国产91久久小草| 国产精品三级在线观看| 色婷婷激情一区二区三区| 亚洲成人免费观看| 久久综合久久鬼色中文字| 国产一区二区三区四区五区入口| 国产精品国产三级国产有无不卡 | 偷偷要91色婷婷| 欧美电影免费观看高清完整版在线 | 中文字幕精品一区| 99国产精品久久| 首页国产欧美久久| 国产亚洲综合在线| 91成人在线观看喷潮| 久久精品国产一区二区三区免费看| 久久精品男人天堂av| 欧美日韩中文字幕一区| 国产综合久久久久影院| 一级日本不卡的影视| 精品国产精品一区二区夜夜嗨| av中文字幕不卡| 石原莉奈在线亚洲三区| 国产精品国产三级国产有无不卡| 欧美顶级少妇做爰| youjizz国产精品| 日本午夜一本久久久综合| 国产精品入口麻豆原神| 日韩亚洲国产中文字幕欧美| 波多野洁衣一区| 精品一区二区三区日韩| 夜夜爽夜夜爽精品视频| 中文字幕欧美区| 制服丝袜亚洲精品中文字幕| 91在线国内视频| 国产在线不卡视频| 天天综合网 天天综合色| 成人欧美一区二区三区黑人麻豆| 欧美一卡二卡在线| 欧美日韩mp4| 91蜜桃免费观看视频| 狠狠色丁香婷婷综合久久片| 香港成人在线视频| 亚洲欧洲日产国码二区| 国产午夜精品一区二区三区嫩草| 欧美精品一卡二卡| 欧美影片第一页| 一本一道波多野结衣一区二区| 国产成人免费在线视频| 精品一区二区三区蜜桃| 日韩不卡在线观看日韩不卡视频| 亚洲欧美另类久久久精品2019| 久久精品一区二区三区四区| 日韩亚洲欧美成人一区| 3d成人动漫网站| 欧美日韩在线播放三区| 欧美午夜理伦三级在线观看| 色老汉一区二区三区| 色综合久久中文综合久久牛| 99天天综合性| 91在线你懂得| 99re热这里只有精品免费视频| 国产高清一区日本| 国产成人在线电影| 成人午夜视频免费看| 成人国产免费视频| 99久久精品久久久久久清纯| 成人av在线影院| 99国产精品久久久久久久久久| caoporn国产精品| 91网址在线看| 精品视频在线看| 日韩一级大片在线观看| 精品国产三级a在线观看| 久久亚洲综合色| 国产日韩欧美一区二区三区综合| 国产精品久久久久9999吃药| 亚洲乱码国产乱码精品精98午夜 | 亚洲品质自拍视频网站| 1024亚洲合集| 一区二区三区日韩| 日韩va欧美va亚洲va久久| 国产综合色产在线精品| 成人福利电影精品一区二区在线观看| 99精品一区二区| 欧美久久久久久久久久| 精品成人a区在线观看| 国产精品免费视频观看| 亚洲最色的网站| 另类专区欧美蜜桃臀第一页| 成人高清av在线| 51精品秘密在线观看| 久久精品男人天堂av| 亚洲精品国产a久久久久久| 亚洲18影院在线观看| 精品一区二区影视| 91麻豆精品一区二区三区| 制服丝袜日韩国产| 欧美国产精品中文字幕| 亚洲国产视频一区| 国产精品一二三区在线| 欧美日韩亚洲国产综合| 精品久久国产字幕高潮| 亚洲另类中文字| 国精品**一区二区三区在线蜜桃| 日本丰满少妇一区二区三区| 欧美一区日韩一区| 成人免费在线视频| 免费观看在线综合| 色综合久久久久综合体| 欧美精品一区男女天堂| 亚洲午夜激情av| 国产福利一区二区| 日韩欧美国产三级电影视频| 亚洲欧美区自拍先锋| 国产精品系列在线观看| 制服丝袜av成人在线看| 亚洲色图制服诱惑| 国产老女人精品毛片久久| 欧美日韩黄视频| 国产精品家庭影院| 精彩视频一区二区三区| 欧美日本精品一区二区三区| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 欧美mv日韩mv国产| 亚洲午夜私人影院| 99久久久精品免费观看国产蜜| 久久只精品国产| 日日噜噜夜夜狠狠视频欧美人| 色吧成人激情小说| 国产精品乱人伦中文| 国产在线精品一区二区不卡了 | 国产毛片一区二区| 日韩一区二区中文字幕| 一区二区三区中文字幕在线观看| 国产不卡一区视频| 国产三级一区二区三区| 久久99国产精品成人| 日韩一级完整毛片| 青青草国产成人av片免费| 欧美日韩一区二区三区在线看| 亚洲免费看黄网站| 在线亚洲精品福利网址导航| 亚洲免费在线电影| 色婷婷av一区二区三区gif| 最新国产精品久久精品| 粉嫩一区二区三区性色av| 久久久久久久久伊人| 国产乱子轮精品视频|