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

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

?? os_core.c

?? LPC2104/5/6嵌入式系統程序實例,帶有PROTUES7.1仿真文件,適合做入門指導
?? 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一区二区三区免费野_久草精品视频
国产一区二区在线视频| 91精品国产色综合久久不卡蜜臀| 国产在线视频一区二区| 日本不卡一区二区三区高清视频| 亚洲成人一区二区| 亚洲一区二区在线视频| 亚洲一区二区在线免费看| 亚洲尤物在线视频观看| 综合精品久久久| 椎名由奈av一区二区三区| 国产精品国产三级国产普通话三级 | 东方aⅴ免费观看久久av| 激情成人午夜视频| 极品少妇xxxx偷拍精品少妇| 国产在线不卡一卡二卡三卡四卡| 国产很黄免费观看久久| 成人午夜av在线| 成人精品电影在线观看| 99久久精品国产一区| 91精品办公室少妇高潮对白| 欧美亚男人的天堂| 欧美丰满少妇xxxbbb| 精品美女一区二区三区| 久久久91精品国产一区二区精品 | 国产欧美日韩不卡免费| 国产精品人妖ts系列视频| 国产精品久久久久一区二区三区 | 不卡av在线网| 91丝袜国产在线播放| 欧美午夜宅男影院| 欧美刺激午夜性久久久久久久 | 精品无人码麻豆乱码1区2区| 国产精品亚洲视频| 成人sese在线| 欧美网站一区二区| 欧美成人精精品一区二区频| 国产欧美精品日韩区二区麻豆天美| 国产精品短视频| 亚洲国产美女搞黄色| 九九视频精品免费| 成人一区在线观看| 欧美影片第一页| 日韩成人免费看| 韩国理伦片一区二区三区在线播放 | 亚洲 欧美综合在线网络| 精品一区二区三区欧美| 99久久精品国产一区| 日韩一级精品视频在线观看| 日本一区二区免费在线| 亚洲国产日韩精品| 国精产品一区一区三区mba桃花| 99精品视频在线播放观看| 欧美日韩在线三区| 国产性色一区二区| 亚洲午夜精品一区二区三区他趣| 久久国产精品72免费观看| 99久久久久久99| 日韩欧美国产三级| 亚洲欧洲美洲综合色网| 日日夜夜精品视频天天综合网| 成人小视频在线| 欧美一级日韩免费不卡| 一区在线中文字幕| 久久av资源站| 欧美视频日韩视频在线观看| 国产欧美精品一区aⅴ影院 | 国产激情偷乱视频一区二区三区| 在线观看欧美黄色| 久久久青草青青国产亚洲免观| 亚洲一区二区三区四区在线观看| 国内成人免费视频| 欧美日韩国产高清一区二区三区 | 26uuu色噜噜精品一区| 亚洲国产aⅴ天堂久久| 成人综合在线观看| 欧美电视剧免费全集观看| 亚洲电影在线播放| www.性欧美| 精品国产一区二区三区忘忧草| 亚洲亚洲人成综合网络| 99久久777色| 久久综合狠狠综合久久综合88| 亚洲一区二区高清| 99在线精品视频| 久久婷婷国产综合国色天香 | 欧美男男青年gay1069videost| 国产精品美女久久久久av爽李琼| 久久97超碰色| 欧美一区二区三区色| 亚洲国产综合91精品麻豆| av资源站一区| 中文字幕成人在线观看| 激情文学综合丁香| 日韩一二三区不卡| 图片区小说区国产精品视频| 欧美专区亚洲专区| 亚洲伦理在线精品| 97成人超碰视| 中文字幕中文字幕在线一区 | 99视频在线精品| 午夜影院久久久| 国产色爱av资源综合区| 日韩高清一级片| 欧美日韩大陆一区二区| 一区二区三区日韩欧美精品| 99精品桃花视频在线观看| 国产精品理论在线观看| 粉嫩绯色av一区二区在线观看| 久久亚洲一区二区三区四区| 韩国欧美一区二区| 国产日韩视频一区二区三区| 国产成人小视频| 久久看人人爽人人| 国产精品911| 国产欧美日韩视频一区二区 | 91丨porny丨最新| 亚洲人精品一区| 91在线国内视频| 一区二区三区产品免费精品久久75| 91国产丝袜在线播放| 亚洲mv大片欧洲mv大片精品| 制服.丝袜.亚洲.另类.中文| 欧美a级理论片| 精品国产露脸精彩对白| 国产精品一区二区不卡| 国产精品亲子乱子伦xxxx裸| 波多野结衣精品在线| 亚洲精选免费视频| 欧美日韩在线播| 麻豆成人综合网| 国产亚洲综合性久久久影院| 91在线国产福利| 天堂蜜桃一区二区三区 | 国产精品女主播在线观看| 99久久精品免费看| 亚洲成年人影院| 欧美不卡一区二区三区| 国产黑丝在线一区二区三区| 中文字幕亚洲区| 欧美在线观看18| 久久精品国产精品青草| 欧美国产禁国产网站cc| 在线这里只有精品| 狠狠色伊人亚洲综合成人| 国产精品国产馆在线真实露脸| 欧美在线一二三四区| 精品一区免费av| 成人欧美一区二区三区黑人麻豆| 欧美色图12p| 国产高清久久久| 亚洲国产日韩在线一区模特| 国产亚洲精品福利| 欧美午夜一区二区三区免费大片| 国产综合久久久久久久久久久久| 亚洲蜜臀av乱码久久精品蜜桃| 欧美成人三级在线| 91香蕉视频污| 久久超碰97中文字幕| 综合自拍亚洲综合图不卡区| 91 com成人网| 色综合久久88色综合天天6| 毛片av中文字幕一区二区| 亚洲视频在线观看三级| 精品久久久久久亚洲综合网| 一本久久精品一区二区| 久久成人免费电影| 一区二区激情小说| 久久婷婷色综合| 欧美日韩精品免费观看视频| 成人毛片视频在线观看| 蜜臀va亚洲va欧美va天堂| 亚洲欧美日本韩国| 久久久午夜电影| 日韩欧美在线不卡| 欧美影院午夜播放| 成人精品亚洲人成在线| 久久99热狠狠色一区二区| 亚洲线精品一区二区三区八戒| 国产欧美精品一区| 欧美白人最猛性xxxxx69交| 欧美亚洲国产一区二区三区va | 久久久蜜臀国产一区二区| 欧美精品第1页| 一本大道久久a久久综合| 国产麻豆精品在线观看| 另类中文字幕网| 亚洲成年人影院| 一区二区三区四区蜜桃| 国产精品久久久久久久久免费丝袜 | 久久无码av三级| 日韩欧美卡一卡二| 欧美日韩视频在线一区二区| 91网址在线看| 99久久精品免费看国产免费软件| 国产乱一区二区| 久久精品噜噜噜成人88aⅴ| 日韩中文欧美在线| 五月综合激情日本mⅴ| 一区二区在线观看av| 亚洲男同1069视频|