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

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

?? os_core.c

?? keil for arm環境下 lpc213x系列 完全編譯通過的代碼
?? 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 "..\user\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一区二区三区免费野_久草精品视频
成人美女视频在线观看| 国产精品1区2区3区| 国产精品进线69影院| 久久精品在线观看| 日韩免费电影网站| 337p日本欧洲亚洲大胆色噜噜| 日韩一二在线观看| 精品国产伦一区二区三区观看体验| 正在播放亚洲一区| 欧美不卡一区二区三区| 久久综合色之久久综合| 中文字幕久久午夜不卡| 综合久久久久综合| 午夜精品123| 麻豆成人91精品二区三区| 国内精品视频666| 国产高清在线精品| 久久国产精品99久久人人澡| 国产精品影视在线| av电影在线观看一区| 欧美午夜在线一二页| 日韩一区二区精品在线观看| 久久综合视频网| 亚洲欧美日韩中文字幕一区二区三区| 一区二区三区四区在线免费观看 | 精品欧美乱码久久久久久1区2区 | 久久综合九色欧美综合狠狠| 久久精品人人爽人人爽| 亚洲精品五月天| 奇米四色…亚洲| 99久久久国产精品| 91精品国产91久久久久久一区二区| 欧美mv日韩mv| 又紧又大又爽精品一区二区| 麻豆传媒一区二区三区| 成人av电影在线网| 欧美区视频在线观看| 国产日韩欧美综合一区| 亚洲国产毛片aaaaa无费看| 久久er精品视频| 欧美亚洲精品一区| 国产精品系列在线| 日日骚欧美日韩| 99久久婷婷国产综合精品电影 | 亚洲永久精品国产| 国产一区二区伦理| 一本一道综合狠狠老| 久久亚洲捆绑美女| 日日摸夜夜添夜夜添亚洲女人| 成人午夜私人影院| 精品国产污网站| 亚洲国产一二三| 91蜜桃免费观看视频| 欧美sm美女调教| 午夜久久久久久久久久一区二区| 成人影视亚洲图片在线| 日韩你懂的电影在线观看| 一区二区欧美国产| 99久久精品国产麻豆演员表| 久久午夜老司机| 久88久久88久久久| 欧美一区二区观看视频| 亚洲va天堂va国产va久| 91丨porny丨中文| 中文一区在线播放| 国产精品123区| 精品福利视频一区二区三区| 日本亚洲一区二区| 欧美精品九九99久久| 亚洲一区二区3| 欧美性色综合网| 亚洲成人一区在线| 欧美区视频在线观看| 午夜欧美一区二区三区在线播放| 色综合欧美在线| 一级精品视频在线观看宜春院| 91一区二区在线| 亚洲男同性恋视频| 欧美三级视频在线| 性做久久久久久免费观看欧美| 在线免费观看成人短视频| 亚洲精品免费看| 欧美性感一区二区三区| 天天影视涩香欲综合网| 91精品国产入口| 韩国午夜理伦三级不卡影院| 久久一留热品黄| av不卡在线播放| 尤物在线观看一区| 欧美一区二区视频在线观看2022| 日韩精品免费专区| 久久久久久9999| voyeur盗摄精品| 亚洲在线中文字幕| 日韩精品综合一本久道在线视频| 国内精品视频666| 中文字幕在线一区| 欧美日韩精品一区二区天天拍小说 | 亚洲一区二区三区小说| 欧美丰满少妇xxxbbb| 国产乱码精品1区2区3区| 国产精品第五页| 在线影视一区二区三区| 麻豆精品视频在线观看免费| 欧美激情一区二区在线| 欧洲生活片亚洲生活在线观看| 亚洲成人www| 亚洲精品一区在线观看| 91一区二区三区在线观看| 丝袜亚洲精品中文字幕一区| 国产亚洲精品7777| 日韩视频一区二区三区| 国产成人综合自拍| 日韩中文字幕亚洲一区二区va在线| 欧美精品一区二区久久久| 91影院在线免费观看| 久久99精品国产.久久久久久| 国产精品国产三级国产aⅴ原创 | 久久理论电影网| 色婷婷亚洲一区二区三区| 麻豆精品精品国产自在97香蕉| 国产精品护士白丝一区av| 日韩欧美亚洲国产另类| 91小视频在线| 国产自产v一区二区三区c| 亚洲一区二区免费视频| 国产欧美1区2区3区| 9191精品国产综合久久久久久| 国产91丝袜在线播放0| 日本视频一区二区| 成人精品视频一区二区三区尤物| 欧美精品一区二区三区在线播放| 99在线精品视频| 美女脱光内衣内裤视频久久影院| 中文字幕一区二区三中文字幕| 日韩美女视频在线| 欧美日韩综合在线| 色呦呦国产精品| 91天堂素人约啪| 国产精品亚洲专一区二区三区| 日韩av二区在线播放| 亚洲主播在线播放| 亚洲精品视频一区| 日韩一区有码在线| 中文字幕精品在线不卡| 国产亚洲人成网站| 久久女同互慰一区二区三区| 日韩午夜三级在线| 精品免费99久久| 日韩女优毛片在线| 精品国产网站在线观看| 欧美电影免费观看高清完整版| 欧美一区二区三区小说| 国产老女人精品毛片久久| 91国产免费观看| 91麻豆免费观看| av电影天堂一区二区在线观看| 成人国产精品免费观看动漫| 高清不卡一二三区| 色综合夜色一区| 色噜噜狠狠色综合中国| 欧美在线高清视频| 欧美日韩在线播放三区四区| 欧美日韩一本到| 欧美一区二区三区精品| 精品国产成人系列| 欧美国产欧美综合| 亚洲精品乱码久久久久久黑人| 亚洲美女视频在线| 亚洲va中文字幕| 久久电影网站中文字幕| 国产成人一区在线| 色94色欧美sute亚洲13| 欧美疯狂做受xxxx富婆| 精品理论电影在线| 中文字幕日本不卡| 亚洲成人一区二区| 国产在线不卡一区| 6080亚洲精品一区二区| 亚洲乱码国产乱码精品精的特点| 国产精品久久精品日日| 亚洲伊人色欲综合网| 日韩av中文字幕一区二区三区| 国产精品一区三区| 成人黄色综合网站| 欧美伊人久久久久久久久影院| 欧美乱妇23p| 国产精品国产三级国产a| 亚洲午夜电影在线| 国内精品视频666| 欧美羞羞免费网站| 久久美女艺术照精彩视频福利播放| 亚洲免费av高清| 国产一区二区在线影院| 色综合天天综合在线视频| 日韩欧美久久一区| 亚洲精品乱码久久久久久| 国产九九视频一区二区三区| 欧美日韩1区2区| 一区二区三区中文字幕电影|