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

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

?? os_core.c

?? ARM7Proteus.rar
?? 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一区二区三区免费野_久草精品视频
久久综合九色综合欧美就去吻| 欧美在线|欧美| 天天综合日日夜夜精品| 中文字幕字幕中文在线中不卡视频| 国产拍揄自揄精品视频麻豆| 精品国产乱码久久久久久影片| 日韩视频在线你懂得| 欧美日韩精品欧美日韩精品一| 欧洲一区二区av| 欧洲亚洲精品在线| 91精品国产色综合久久 | 日韩一级在线观看| 日韩视频一区二区三区| 精品久久久久久久人人人人传媒| 欧美一区二区国产| 欧美mv和日韩mv的网站| 国产视频一区二区三区在线观看| 国产视频视频一区| 国产蜜臀av在线一区二区三区| 久久精品视频一区二区| 亚洲视频一区二区免费在线观看| 亚洲欧美另类久久久精品2019 | 欧美视频一二三区| 欧美午夜一区二区三区| 6080yy午夜一二三区久久| 日韩精品专区在线| 中文字幕制服丝袜一区二区三区| 中文字幕日韩欧美一区二区三区| 亚洲精品免费在线播放| 日韩电影在线一区| 国产69精品久久99不卡| 在线观看不卡视频| 精品国产一区二区三区久久影院| 国产欧美一区视频| 偷拍日韩校园综合在线| 国产一区二区伦理| 91在线免费视频观看| 91麻豆精品国产自产在线| 国产午夜精品美女毛片视频| 亚洲主播在线观看| 国产精品一区二区久久不卡| 91国在线观看| 26uuu亚洲综合色| 一区二区三区成人| 精品无人码麻豆乱码1区2区| 91视视频在线直接观看在线看网页在线看| 欧美三级一区二区| 国产蜜臀av在线一区二区三区| 午夜精品成人在线| gogo大胆日本视频一区| 精品久久久久久久人人人人传媒| 一级中文字幕一区二区| 国产乱人伦偷精品视频免下载 | 国产精品欧美一区喷水| 日韩电影在线看| 色爱区综合激月婷婷| 国产三级精品视频| 免费成人深夜小野草| 在线看日韩精品电影| 国产精品久久久一区麻豆最新章节| 日产欧产美韩系列久久99| 色天使色偷偷av一区二区| 国产亚洲美州欧州综合国| 蜜桃av噜噜一区| 欧美日韩黄视频| 亚洲伊人色欲综合网| 91女神在线视频| 欧美国产精品一区二区| 国产一区二区精品在线观看| 91精品国产麻豆国产自产在线| 亚洲美女视频在线| 国产成人av在线影院| 精品国产凹凸成av人导航| 另类成人小视频在线| 欧美精品丝袜中出| 亚洲成人动漫在线观看| 欧美亚洲尤物久久| 亚洲一区中文在线| 色8久久精品久久久久久蜜| 国产精品国产成人国产三级| 成人黄色免费短视频| 国产精品麻豆欧美日韩ww| 成人午夜av在线| 一区在线中文字幕| 91蜜桃在线观看| 亚洲电影一级片| 欧美性色aⅴ视频一区日韩精品| 亚洲激情自拍偷拍| 欧美精品色综合| 国精产品一区一区三区mba桃花| 久久伊99综合婷婷久久伊| 国产mv日韩mv欧美| 亚洲欧洲韩国日本视频| 欧美日韩三级一区二区| 麻豆国产精品777777在线| 精品国产髙清在线看国产毛片 | 日本不卡一区二区三区| 欧美成人国产一区二区| 成人免费高清视频| 亚洲综合在线视频| 91精品免费观看| 福利一区二区在线| 一区二区三区在线视频播放| 欧美裸体一区二区三区| 国产在线精品一区二区三区不卡| 国产区在线观看成人精品| 欧美最新大片在线看| 日本不卡的三区四区五区| 精品免费99久久| 91美女片黄在线观看91美女| 日韩成人精品在线| 亚洲国产成人一区二区三区| 欧美日韩黄色影视| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 成人免费视频在线观看| 在线电影院国产精品| 国产乱码字幕精品高清av| 亚洲一区在线视频观看| 国产人成亚洲第一网站在线播放| 欧洲国内综合视频| 国产乱理伦片在线观看夜一区| 一区二区三区在线观看动漫 | ●精品国产综合乱码久久久久| 欧美老肥妇做.爰bbww视频| 国产成人亚洲综合a∨婷婷图片| 亚洲综合色噜噜狠狠| 国产日韩欧美精品一区| 欧美高清激情brazzers| 91色九色蝌蚪| 国产成人精品亚洲午夜麻豆| 日韩精品一二三四| 亚洲男人的天堂av| 国产日本一区二区| 日韩精品一区二区三区四区视频| 91美女蜜桃在线| 成年人网站91| 国产福利91精品一区二区三区| 首页国产欧美日韩丝袜| 亚洲综合自拍偷拍| 亚洲色图20p| 亚洲特黄一级片| 亚洲欧美aⅴ...| 亚洲天堂成人网| 国产精品伦一区二区三级视频| 精品成人私密视频| 欧美一级高清片| 欧美精品在线一区二区| 欧美日韩中文字幕精品| 在线视频中文字幕一区二区| 99久久精品免费精品国产| 成人精品在线视频观看| 国产精品一二三区| 国产精品一区二区男女羞羞无遮挡| 精品一区二区三区在线观看| 免费观看91视频大全| 久久精品国产精品亚洲综合| 蜜臀av一级做a爰片久久| 奇米在线7777在线精品 | 国产一区二区0| 国产一区在线观看视频| 国产精品综合视频| 国产精品系列在线播放| 成人午夜电影久久影院| 91网站在线观看视频| 精品视频一区 二区 三区| 欧美日韩激情在线| 日韩视频一区二区三区在线播放| 精品国产乱码久久久久久免费| www精品美女久久久tv| 久久综合九色综合欧美亚洲| 日本一区二区动态图| 成人免费一区二区三区在线观看| 夜夜嗨av一区二区三区网页| 天天操天天色综合| 国产在线精品视频| 色综合天天狠狠| 88在线观看91蜜桃国自产| 精品国产一区二区三区久久影院| 国产亚洲综合性久久久影院| 中文字幕一区二区三区不卡在线| 日韩久久一区二区| 亚洲一区在线观看免费| 免费观看一级特黄欧美大片| 国产精品1区2区3区| 一本久久a久久精品亚洲| 91精品国产色综合久久ai换脸| 久久久综合九色合综国产精品| 中文字幕亚洲电影| 蜜桃视频在线观看一区二区| 高清在线观看日韩| 欧美色视频一区| 国产午夜精品一区二区| 亚洲高清视频在线| 国产一区91精品张津瑜| 精品1区2区3区| 国产精品网友自拍| 奇米精品一区二区三区在线观看| 国产成人精品1024| 日韩一区二区高清| 亚洲欧洲国产日韩|