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

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

?? os_core.c

?? uc/os2.52源代碼 基于ARM7實驗箱平臺
?? 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一区二区三区免费野_久草精品视频
国产一区二区不卡老阿姨| 久久99热99| 久久久久国产免费免费| 欧美视频一区在线| 国产a精品视频| 日本va欧美va精品| 伊人夜夜躁av伊人久久| 久久综合网色—综合色88| 欧美性一级生活| 国产精品亚洲第一| 免费在线看一区| 亚洲一区二区成人在线观看| 国产日韩精品一区二区三区| 日韩一级片网站| 欧美视频日韩视频| 一本在线高清不卡dvd| 粉嫩av一区二区三区粉嫩 | 成人一区二区三区视频在线观看| 天堂一区二区在线| 一级日本不卡的影视| 亚洲视频一二三区| 中文字幕综合网| 国产精品第四页| 日本一区二区三区国色天香| 久久美女高清视频| 精品国产乱码久久久久久浪潮| 91麻豆精品国产91久久久| 欧美日韩免费高清一区色橹橹| 色综合久久久久久久| av爱爱亚洲一区| 91影院在线免费观看| www.日本不卡| 97久久精品人人做人人爽50路| 国产99久久久精品| 成人av动漫在线| 国产成人在线色| 国产一区二区三区四| 日韩美女久久久| 972aa.com艺术欧美| 精品一区二区三区香蕉蜜桃 | 一区二区三区欧美激情| 亚洲精选免费视频| 亚洲激情男女视频| 亚洲一区在线视频观看| 亚洲国产综合视频在线观看| 亚洲一区二区在线免费看| 亚洲激情av在线| 亚洲国产一区二区a毛片| 视频一区视频二区中文字幕| 日韩电影在线一区二区| 久久成人18免费观看| 国产精品资源在线观看| 高潮精品一区videoshd| 99re成人精品视频| 在线观看日产精品| 欧美一区二区私人影院日本| 26uuu另类欧美亚洲曰本| 久久久精品国产免费观看同学| 美日韩一区二区三区| 九色综合狠狠综合久久| 粉嫩av一区二区三区| 一本色道久久综合亚洲91| 欧美系列一区二区| 日韩欧美国产一区在线观看| 国产亚洲一本大道中文在线| 亚洲三级久久久| 五月天一区二区| 久久99国产精品久久| 成人激情视频网站| 欧美天堂一区二区三区| 欧美电视剧在线看免费| 国产精品美女久久福利网站| 一区二区三区久久久| 久久99久久精品欧美| 91看片淫黄大片一级在线观看| 欧美精选午夜久久久乱码6080| 久久亚洲一区二区三区明星换脸| 中文字幕中文在线不卡住| 午夜激情一区二区| 国产福利精品一区二区| 欧美日韩久久一区二区| 久久久久九九视频| 天天色综合成人网| 成人黄动漫网站免费app| 精品视频一区二区不卡| 国产三级三级三级精品8ⅰ区| 亚洲午夜久久久| 成人黄色综合网站| 欧美一区二区三区播放老司机| 中文字幕色av一区二区三区| 免费在线观看一区| 在线亚洲一区二区| 国产亚洲一区二区三区| 日本免费在线视频不卡一不卡二| 成人毛片老司机大片| 日韩视频在线一区二区| 亚洲自拍都市欧美小说| 国产91精品久久久久久久网曝门| 欧美精品一二三| 亚洲精品中文在线观看| 国产成人av电影| 欧美成人精精品一区二区频| 亚洲免费色视频| av一区二区三区黑人| 久久综合久久久久88| 日日欢夜夜爽一区| 在线视频亚洲一区| 亚洲欧美日韩一区二区三区在线观看| 国产一区二区三区电影在线观看| 欧美伦理影视网| 一区二区三区在线观看国产| 成人三级伦理片| 26uuu精品一区二区在线观看| 日韩国产精品大片| 欧美日韩不卡一区| 亚洲一区二区三区精品在线| 99久久免费精品| 国产精品私人自拍| 国产精品综合av一区二区国产馆| 欧美一区二区三区四区视频| 亚洲在线成人精品| 一本久久a久久精品亚洲| 国产精品久久久久影院| 国产精品77777竹菊影视小说| 精品欧美乱码久久久久久| 三级在线观看一区二区| 欧美日韩高清一区二区| 亚洲国产精品欧美一二99| 在线观看av一区| 亚洲一区二区三区免费视频| 色天使色偷偷av一区二区| 日韩美女视频一区二区| 91免费视频观看| 亚洲精品美腿丝袜| 91蜜桃在线免费视频| 亚洲免费高清视频在线| 色婷婷综合五月| 亚洲国产精品久久人人爱蜜臀| 欧美色大人视频| 天堂va蜜桃一区二区三区| 欧美一区二区日韩| 久久精品国产一区二区三区免费看 | 欧美三日本三级三级在线播放| 亚洲一区二区三区四区五区黄| 欧美日韩一本到| 婷婷激情综合网| 欧美一区二区三区白人| 精品一区二区久久久| 日本一区二区三区免费乱视频| av爱爱亚洲一区| 亚洲mv大片欧洲mv大片精品| 91精品国产综合久久精品app| 麻豆视频一区二区| 久久久久久久久久久久久夜| 国产精品2024| 亚洲黄色av一区| 91精品国产综合久久久久久久| 久久机这里只有精品| 欧美激情艳妇裸体舞| 在线免费精品视频| 蜜桃av一区二区三区| 国产日产欧产精品推荐色| 日本精品视频一区二区| 男女男精品视频| 国产精品美女视频| 欧美日韩精品一区二区天天拍小说 | 中文字幕电影一区| 欧美曰成人黄网| 美女性感视频久久| 国产精品久久久久久久久免费相片 | 91在线视频18| 日本少妇一区二区| 国产精品的网站| 欧美一区二区在线不卡| av午夜精品一区二区三区| 五月婷婷久久综合| 日本一区二区三区dvd视频在线| 欧美午夜精品免费| 国产成人夜色高潮福利影视| 亚洲一区二区精品视频| 中文字幕在线观看不卡视频| 国产精品国产三级国产普通话蜜臀| 琪琪一区二区三区| ...xxx性欧美| 日韩午夜激情视频| 91性感美女视频| 日本美女一区二区三区视频| 中文字幕电影一区| 欧美日韩黄色影视| 丁香激情综合国产| 日本不卡一区二区| 亚洲老司机在线| 国产欧美日本一区视频| 91精品免费观看| 91丝袜高跟美女视频| 国产一区999| 日韩成人一级大片| 亚洲精品ww久久久久久p站| 国产亚洲一区字幕| 精品国产第一区二区三区观看体验|