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

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

?? os_core.c

?? LPC2368Kit 開發(fā)板的UCOS移植!今天終于在從這個論壇上下載的LPC214X的UCOS移植代碼的基礎(chǔ)上
?? 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 "..\APP\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一区二区三区免费野_久草精品视频
国产视频一区在线播放| 国产精品小仙女| 精彩视频一区二区| 欧美性做爰猛烈叫床潮| 国产片一区二区| 麻豆久久久久久| 在线国产亚洲欧美| 国产精品电影一区二区三区| 久久99精品国产麻豆婷婷| 欧美日韩另类国产亚洲欧美一级| 亚洲国产精品高清| 九九热在线视频观看这里只有精品| 在线视频欧美精品| 亚洲视频狠狠干| 不卡av电影在线播放| 国产欧美精品一区二区三区四区| 蜜臀久久99精品久久久久宅男| 欧美午夜电影网| 亚洲精品成人天堂一二三| 成人av手机在线观看| 国产偷v国产偷v亚洲高清| 免费成人小视频| 91精品国产全国免费观看| 午夜精品久久久久| 欧美探花视频资源| 亚洲午夜久久久久久久久久久| av亚洲精华国产精华精华| 亚洲欧洲另类国产综合| 不卡一二三区首页| **网站欧美大片在线观看| 成人黄色片在线观看| 中文字幕免费一区| 99精品国产视频| 亚洲欧美日韩国产成人精品影院| 97久久久精品综合88久久| 亚洲色图20p| 色综合久久天天综合网| 亚洲黄色性网站| 欧美日韩国产小视频| 日韩vs国产vs欧美| 精品国一区二区三区| 国产盗摄精品一区二区三区在线| 欧美国产国产综合| 色综合久久天天综合网| 午夜久久久影院| 欧美sm极限捆绑bd| 懂色av中文一区二区三区| 亚洲图片欧美激情| 欧美日韩亚洲丝袜制服| 秋霞av亚洲一区二区三| 精品动漫一区二区三区在线观看| 成人一级视频在线观看| 亚洲影视在线播放| 日韩欧美国产精品| av在线一区二区三区| 亚洲综合一区二区三区| 欧美mv日韩mv| 91在线国产福利| 日韩国产欧美三级| 国产精品久久久久aaaa| 欧美色国产精品| 国产精品18久久久久久久久久久久 | av成人动漫在线观看| 夜夜嗨av一区二区三区网页| 日韩亚洲欧美在线观看| 成人动漫精品一区二区| 视频精品一区二区| 国产精品美女www爽爽爽| 欧美精品一二三四| 高清不卡一区二区在线| 亚洲国产精品天堂| 国产欧美日韩不卡免费| 91精品欧美福利在线观看| 成人福利视频网站| 免费在线欧美视频| 亚洲精品一二三四区| 久久九九全国免费| 91精品蜜臀在线一区尤物| 不卡欧美aaaaa| 精品一区二区三区在线播放| 怡红院av一区二区三区| 国产日本一区二区| 欧美成人高清电影在线| 精品婷婷伊人一区三区三| 99热国产精品| 国产精品自拍在线| 日本在线观看不卡视频| 亚洲精品国产a| 国产清纯美女被跳蛋高潮一区二区久久w | 国产一区二区在线影院| 婷婷激情综合网| 伊人性伊人情综合网| 国产精品水嫩水嫩| 国产午夜亚洲精品不卡| 日韩免费电影一区| 884aa四虎影成人精品一区| 日韩精品一区二区三区swag| 欧美色老头old∨ideo| 日本高清视频一区二区| 成人的网站免费观看| 国产成人av电影免费在线观看| 精品无人码麻豆乱码1区2区| 麻豆国产91在线播放| 男女性色大片免费观看一区二区| 香蕉影视欧美成人| 亚洲国产精品视频| 亚洲一级电影视频| 亚洲h精品动漫在线观看| 亚洲一区二区三区激情| 亚洲福利视频三区| 亚洲国产wwwccc36天堂| 亚洲bt欧美bt精品777| 午夜电影久久久| 免费观看30秒视频久久| 蜜桃av噜噜一区二区三区小说| 亚洲国产精品久久久久婷婷884| 亚洲高清中文字幕| 日本在线不卡视频一二三区| 日本一不卡视频| 激情久久五月天| 国产91在线看| 色综合一区二区| 欧美日韩中文字幕精品| 欧美一区二区在线视频| 日韩视频免费直播| 国产日韩成人精品| 亚洲美女屁股眼交3| 亚洲第一激情av| 久久精工是国产品牌吗| 国产成人免费网站| 成+人+亚洲+综合天堂| 欧美影视一区在线| 欧美大尺度电影在线| 国产区在线观看成人精品 | 99久久国产综合精品女不卡| 99视频精品全部免费在线| 在线观看亚洲成人| 日韩精品一区二| 国产精品福利一区二区| 亚洲国产视频a| 精品一区二区在线看| 99久久精品国产观看| 欧美精品日韩一本| 欧美激情中文不卡| 视频一区在线播放| 国产91高潮流白浆在线麻豆 | 精品国产在天天线2019| 国产精品久久久久久久久快鸭 | 中文一区二区在线观看| 一区二区三区不卡在线观看| 久久国产欧美日韩精品| 成人av高清在线| 7777精品伊人久久久大香线蕉 | 蜜桃视频在线观看一区二区| 成人一区二区三区视频| 欧美日韩高清影院| 国产精品国产三级国产aⅴ入口 | 午夜日韩在线观看| 成人性生交大片免费看中文网站| 欧美日韩亚洲综合| 国产精品久久久久久福利一牛影视| 亚洲成人高清在线| 99久久久精品| 久久久久青草大香线综合精品| 一区二区三区四区中文字幕| 国产高清精品网站| 91精品国产欧美一区二区18| 亚洲美女电影在线| 丁香另类激情小说| 精品乱人伦小说| 五月综合激情婷婷六月色窝| 不卡欧美aaaaa| 久久久午夜精品| 另类小说图片综合网| 欧美日韩精品三区| 一区二区三区在线影院| www.激情成人| 久久色视频免费观看| 美腿丝袜亚洲一区| 欧美福利视频导航| 亚洲大片在线观看| 欧美三级中文字| 亚洲乱码国产乱码精品精98午夜 | 国产精选一区二区三区| 欧美日韩高清在线| 亚洲永久免费视频| 91久久一区二区| 亚洲女同一区二区| 91在线你懂得| 中文字幕亚洲成人| 99久久婷婷国产综合精品电影| 国产日本亚洲高清| 成人av在线播放网站| 国产精品久99| 成人精品国产一区二区4080| 国产女人18毛片水真多成人如厕| 极品少妇xxxx精品少妇| 久久中文娱乐网| 成人性生交大片免费看在线播放| 国产丝袜欧美中文另类|