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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? os_core.c

?? 0x ISP LPC210x的ISP軟件 Ucosii 2.52 for lpc2100 uC/OS-II移植程序及相關(guān)中間件 LPC2114 component library LP
?? 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()

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美顶级少妇做爰| 精品综合久久久久久8888| 国产精品一二二区| 精品三级av在线| 精品综合久久久久久8888| 日韩免费电影网站| 狠狠色狠狠色综合系列| 久久看人人爽人人| 国产99久久久久| 国产精品毛片大码女人| 99riav久久精品riav| 亚洲精品国产成人久久av盗摄| 成人app软件下载大全免费| 国产精品成人一区二区艾草| 91浏览器打开| 日韩福利电影在线观看| 精品sm捆绑视频| 成人丝袜18视频在线观看| 亚洲免费av观看| 欧美日韩高清一区二区三区| 毛片av一区二区三区| 久久午夜色播影院免费高清| 不卡av电影在线播放| 亚洲永久免费av| 欧美大片免费久久精品三p| 国产精品亚洲第一| 亚洲精品乱码久久久久久久久 | 懂色av一区二区夜夜嗨| 亚洲精品一二三四区| 日韩午夜av电影| 成人毛片在线观看| 五月综合激情网| 日本一区二区视频在线观看| 97久久久精品综合88久久| 日本午夜一本久久久综合| 国产亚洲1区2区3区| 欧美性三三影院| 国产suv一区二区三区88区| 亚洲激情自拍视频| 国产性天天综合网| 欧美日韩国产一二三| 国产成人精品一区二区三区四区| 一区二区久久久久久| 久久久久久免费网| 欧美日本在线视频| 99在线精品免费| 久久综合综合久久综合| 夜夜爽夜夜爽精品视频| 国产午夜精品一区二区三区视频| 欧美伊人久久久久久久久影院| 国产乱子轮精品视频| 亚洲电影你懂得| 国产精品久久久久aaaa| 欧美成人精品高清在线播放| 欧美这里有精品| 成人激情黄色小说| 极品销魂美女一区二区三区| 亚洲国产成人精品视频| 国产精品久久三| 久久综合一区二区| 欧美一区二区女人| 欧美午夜精品理论片a级按摩| 顶级嫩模精品视频在线看| 青草国产精品久久久久久| 一区二区三区四区五区视频在线观看| 久久精品夜夜夜夜久久| 26uuu亚洲| 日韩精品一区二区三区老鸭窝 | 91精品婷婷国产综合久久竹菊| 99久久精品国产毛片| 成熟亚洲日本毛茸茸凸凹| 久久精品国产久精国产| 蜜桃91丨九色丨蝌蚪91桃色| 午夜视频一区二区| 亚洲国产一二三| 亚洲一区二区三区四区在线| 亚洲三级小视频| 中文字幕在线不卡视频| 中文字幕不卡一区| 国产欧美久久久精品影院| 国产亚洲人成网站| 久久九九国产精品| 国产无一区二区| 中文字幕精品—区二区四季| 在线视频亚洲一区| 日韩免费性生活视频播放| 日本道色综合久久| 国产精品综合在线视频| 国产亚洲欧美一区在线观看| 一区二区三区中文字幕在线观看| 99re这里都是精品| 亚洲精品写真福利| 欧美中文字幕一区| 日精品一区二区三区| 日韩一区二区精品| 久久不见久久见免费视频7| 亚洲精品在线免费播放| 国产激情一区二区三区四区| 亚洲国产精品ⅴa在线观看| 成人精品一区二区三区四区| 亚洲视频一区在线| 欧美性受xxxx黑人xyx| 秋霞午夜av一区二区三区| 精品国产一区二区三区久久影院| 极品美女销魂一区二区三区| 国产日韩欧美不卡| 色一情一乱一乱一91av| 日韩电影免费在线| 91视视频在线观看入口直接观看www | 亚洲女同女同女同女同女同69| 色综合天天综合色综合av| 丝瓜av网站精品一区二区| 欧美成人一区二区三区在线观看| 成人午夜精品在线| 亚洲中国最大av网站| 久久丝袜美腿综合| 色狠狠色狠狠综合| 国产精品小仙女| 一区二区久久久久| 久久久91精品国产一区二区三区| 成+人+亚洲+综合天堂| 亚洲国产精品视频| 日本一区二区综合亚洲| 欧美日韩国产系列| 免费不卡在线视频| 国产精品国产三级国产三级人妇 | 99久久婷婷国产综合精品| 亚洲欧美日韩在线| 欧美性生活影院| 99久久精品情趣| 免费在线观看一区二区三区| 久久久久久久久久久久电影| 99精品视频在线观看免费| 亚洲成人免费av| 久久免费美女视频| 91美女片黄在线观看91美女| 日本色综合中文字幕| 国产欧美va欧美不卡在线| 一本在线高清不卡dvd| 国产馆精品极品| 亚洲成人手机在线| 国产精品女上位| 日韩欧美一区二区在线视频| 春色校园综合激情亚洲| 亚洲欧美色一区| 久久免费看少妇高潮| 欧美mv日韩mv| 欧美老肥妇做.爰bbww| 99国产精品久久久| 国产毛片精品视频| 午夜影院在线观看欧美| 亚洲乱码日产精品bd| 久久精品视频在线看| 在线综合+亚洲+欧美中文字幕| 欧美日韩不卡在线| 91福利精品第一导航| 国产99一区视频免费| 黄一区二区三区| 麻豆精品视频在线观看视频| 亚洲第一成年网| 亚洲三级电影网站| 夜夜嗨av一区二区三区| 国产精品另类一区| 久久久久久久久久久99999| 欧美一级电影网站| 欧美影院精品一区| 91.com在线观看| 欧美一a一片一级一片| 91免费精品国自产拍在线不卡| 国产电影一区二区三区| 国产成人精品免费| 国产电影精品久久禁18| 久久不见久久见免费视频7| 日本中文在线一区| 午夜国产精品一区| 免费观看在线色综合| 日韩成人免费在线| 免费在线一区观看| 国产一区二区福利| 国产成人超碰人人澡人人澡| 国产成人啪免费观看软件| 国产一区二区三区美女| 日本怡春院一区二区| 国产激情一区二区三区四区| 成人精品国产福利| 91丨国产丨九色丨pron| 色婷婷亚洲一区二区三区| 日韩一二三四区| 久久午夜羞羞影院免费观看| 日本一区二区成人| 亚洲欧美日韩电影| 日韩国产在线观看| 国内精品久久久久影院一蜜桃| 紧缚捆绑精品一区二区| 不卡欧美aaaaa| 欧洲人成人精品| 久久这里只有精品首页| 国产精品麻豆视频| 性久久久久久久久| 一二三四社区欧美黄|