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

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

?? os_core.c

?? lpc2368-keil環境下的ucos的移植例程
?? 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()

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品福利二区三区| 日本中文字幕不卡| 国产经典欧美精品| 日韩精品专区在线影院重磅| 亚洲视频图片小说| 成人avav在线| 国产精品丝袜久久久久久app| 另类专区欧美蜜桃臀第一页| 欧美三级中文字| 亚洲综合视频在线| 欧美高清视频在线高清观看mv色露露十八| 中文字幕中文字幕中文字幕亚洲无线 | 日韩在线一区二区| 欧美一区二区黄色| 精品一区二区精品| 中文字幕第一区综合| 91在线视频播放地址| 自拍偷拍亚洲激情| 欧美挠脚心视频网站| 免费高清在线视频一区·| 欧美成人a在线| 99热精品国产| 午夜影院久久久| 精品国产网站在线观看| 成人丝袜高跟foot| 亚洲另类色综合网站| 欧美精品三级日韩久久| 国产一区二区电影| 亚洲精品中文字幕乱码三区| 911精品国产一区二区在线| 蜜桃久久久久久久| 久久久夜色精品亚洲| 一本大道久久a久久精品综合| 五月天激情综合| 亚洲欧美在线视频观看| 欧美一级搡bbbb搡bbbb| 99国产精品久| 国产不卡视频一区| 日产国产欧美视频一区精品| 国产精品沙发午睡系列990531| 56国语精品自产拍在线观看| 99久久精品国产精品久久| 国产精品综合二区| 六月丁香综合在线视频| 亚洲va欧美va国产va天堂影院| 国产精品美女久久久久久| 欧美一卡2卡3卡4卡| 欧美日韩久久久| 成人一级黄色片| 亚洲视频一区在线观看| 久久综合久久久久88| 日韩免费观看高清完整版| 欧美在线播放高清精品| 一本久道中文字幕精品亚洲嫩| 精品一区二区三区在线播放 | 狠狠狠色丁香婷婷综合激情| 亚洲成人精品影院| 亚洲成人777| 日韩电影免费在线看| 免费在线观看一区| 精品一区二区三区免费播放| 精品一区二区影视| 成人h版在线观看| 91欧美一区二区| 88在线观看91蜜桃国自产| 欧美日本一区二区三区四区| 日韩一卡二卡三卡四卡| 欧美videossexotv100| 26uuu另类欧美亚洲曰本| 国产女人aaa级久久久级| 国产精品麻豆网站| 一区二区在线观看免费视频播放 | 国产精品毛片大码女人| 亚洲一区二区视频在线| 麻豆国产欧美日韩综合精品二区 | 国产日本亚洲高清| 亚洲精品日韩专区silk| 欧美a级一区二区| 91视频一区二区三区| 91精品国产手机| 亚洲欧洲精品一区二区精品久久久 | 久久精品夜夜夜夜久久| 亚洲激情欧美激情| 国产91对白在线观看九色| 欧美欧美欧美欧美首页| 中文字幕乱码一区二区免费| 三级久久三级久久久| 99视频在线精品| 国产精品你懂的在线| 久久疯狂做爰流白浆xx| 欧美性色综合网| 亚洲色图20p| 91免费看视频| 亚洲三级小视频| 成人激情免费电影网址| 国产日韩欧美电影| 国产iv一区二区三区| 国产亚洲一区二区三区在线观看| 日韩精品乱码免费| 91福利资源站| 亚洲成人激情社区| 欧美精品一二三| 日日摸夜夜添夜夜添精品视频| 欧美三级在线看| 午夜精品福利在线| 日韩亚洲欧美中文三级| 日本中文字幕不卡| 色综合久久久网| 亚洲超丰满肉感bbw| 欧美精品乱码久久久久久按摩| 首页综合国产亚洲丝袜| 日韩免费看网站| 成人的网站免费观看| 日韩理论在线观看| 欧美久久久久中文字幕| 日本成人在线视频网站| 久久婷婷综合激情| av亚洲产国偷v产偷v自拍| 一区二区三区在线不卡| 51精品视频一区二区三区| 精一区二区三区| 国产精品美女www爽爽爽| 欧美偷拍一区二区| 久久国产精品99久久人人澡| 亚洲欧洲日韩av| 日韩一区二区麻豆国产| 99免费精品视频| 日本vs亚洲vs韩国一区三区二区| 久久久精品2019中文字幕之3| av午夜一区麻豆| 国内精品国产成人国产三级粉色| 亚洲欧美在线aaa| 欧美成人伊人久久综合网| 99视频一区二区三区| 精品在线观看免费| 亚洲成av人**亚洲成av**| 国产精品女同一区二区三区| 欧美一级在线视频| 色噜噜狠狠色综合欧洲selulu| 国产精品69久久久久水密桃| 偷窥国产亚洲免费视频| 亚洲综合免费观看高清完整版在线| 日韩一区二区在线观看视频播放| 在线视频欧美区| 91视频在线看| 色综合久久久久久久久| 色综合天天做天天爱| proumb性欧美在线观看| 国产麻豆成人精品| 国产在线不卡视频| 国产中文字幕一区| 国产麻豆午夜三级精品| 国产不卡视频在线观看| 国产一区二区女| 国产精品综合视频| 成人免费毛片a| 在线免费视频一区二区| 欧美午夜片在线观看| 欧美群妇大交群中文字幕| 欧美日韩国产一区二区三区地区| 欧美亚洲国产一区二区三区va| 欧美在线观看视频一区二区| 欧美专区亚洲专区| 欧美一级片在线| 久久久久久久久岛国免费| 国产精品理论片在线观看| 亚洲欧美日韩国产手机在线| 日韩中文字幕不卡| 毛片av一区二区三区| 欧美巨大另类极品videosbest | 国产欧美日韩一区二区三区在线观看| 久久精品夜色噜噜亚洲a∨| 中文字幕巨乱亚洲| 亚洲成人免费在线观看| 国产成人精品在线看| 欧美亚洲综合色| 国产婷婷色一区二区三区四区| 亚洲精品中文在线| 国产成人精品免费| 5858s免费视频成人| 亚洲免费看黄网站| 国产精品一区二区无线| 欧美精品tushy高清| 18涩涩午夜精品.www| 激情综合色丁香一区二区| 欧美中文字幕不卡| 国产精品久久久久久久久图文区 | 91麻豆精品国产综合久久久久久| 国产欧美日韩激情| 久久精品国产精品青草| 欧美日韩中文国产| 一级日本不卡的影视| 成人av免费在线| 综合电影一区二区三区| 岛国一区二区在线观看| 国产日韩三级在线| 高清国产一区二区三区| 久久亚洲精品国产精品紫薇| 激情国产一区二区| 欧美变态凌虐bdsm|