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

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

?? os_core.c

?? protues仿真ARM ARM的I2C
?? 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一区二区三区免费野_久草精品视频
视频一区欧美日韩| 亚洲激情在线播放| 6080国产精品一区二区| 日本精品一级二级| 91久久国产最好的精华液| 91性感美女视频| 91福利国产成人精品照片| 99视频有精品| 色又黄又爽网站www久久| 91理论电影在线观看| 91蜜桃网址入口| 91看片淫黄大片一级在线观看| 波多野结衣精品在线| 波多野结衣在线aⅴ中文字幕不卡| 成人福利视频在线看| 色综合中文字幕| 欧美性色欧美a在线播放| 欧美人成免费网站| 久久先锋资源网| 国产精品久久久久一区二区三区共| 夜夜亚洲天天久久| 亚洲在线视频网站| 日韩高清不卡一区二区三区| 蜜臂av日日欢夜夜爽一区| 国产乱人伦精品一区二区在线观看| 国产大陆亚洲精品国产| 日本久久电影网| 欧美一级片免费看| 中文字幕在线不卡| 首页国产欧美日韩丝袜| 国产在线精品视频| 在线观看精品一区| 久久久九九九九| 亚洲午夜精品在线| 国产精品一区二区你懂的| 91视频一区二区| 26uuu国产电影一区二区| 一区二区三区日韩精品视频| 开心九九激情九九欧美日韩精美视频电影| 国产一区二区三区香蕉| 在线观看国产一区二区| 久久精品欧美日韩| 日韩中文字幕亚洲一区二区va在线| 人人精品人人爱| 91影视在线播放| 日韩欧美综合在线| 亚洲青青青在线视频| 国产精品一区三区| 欧美一区二区三区影视| 中文字幕亚洲视频| 国产原创一区二区| 7777精品伊人久久久大香线蕉经典版下载 | 国内精品久久久久影院色| 91捆绑美女网站| 国产精品视频一二三区| 老汉av免费一区二区三区 | 毛片av中文字幕一区二区| 99这里只有精品| 国产午夜精品一区二区| 日本欧美加勒比视频| 在线观看三级视频欧美| 亚洲欧洲在线观看av| 国产一区二区三区av电影| 91精品国产91久久久久久一区二区 | 国产一区 二区 三区一级| 欧美精品在线观看播放| 亚洲人成网站影音先锋播放| 国产精品一区二区黑丝| 精品美女一区二区| 日韩成人免费电影| 91精品国产综合久久精品性色| 亚洲午夜一区二区| 欧美天堂亚洲电影院在线播放| 国产精品久久久久一区二区三区共 | 欧美一级欧美一级在线播放| 亚洲国产一区二区视频| 99久久精品免费看| 中文字幕免费一区| 成人国产一区二区三区精品| 国产偷v国产偷v亚洲高清| 国产成人99久久亚洲综合精品| 久久久午夜精品理论片中文字幕| 久久99久国产精品黄毛片色诱| 777午夜精品视频在线播放| 裸体一区二区三区| 国产亚洲va综合人人澡精品| 成人av在线看| 亚洲另类在线制服丝袜| 欧美三级欧美一级| 男人的j进女人的j一区| 精品日韩av一区二区| 国产成人午夜精品5599| 国产精品国产三级国产三级人妇| 99久久久国产精品免费蜜臀| 亚洲女同女同女同女同女同69| 欧美日韩中文国产| 国产一区二区三区免费看| 国产精品国产三级国产a| 日本精品免费观看高清观看| 日一区二区三区| 久久久国产精品不卡| 91久久精品午夜一区二区| 捆绑紧缚一区二区三区视频| 国产欧美一区二区精品性| 91精品91久久久中77777| 久久国产尿小便嘘嘘尿| 成人欧美一区二区三区白人| 日韩一区二区三区在线视频| 国产99久久久国产精品潘金网站| 一区二区视频免费在线观看| 日韩一区二区在线播放| 成人美女在线视频| 午夜视频一区二区三区| 国产精品久久免费看| 欧美一区二区人人喊爽| 91性感美女视频| 国产呦精品一区二区三区网站| 亚洲综合免费观看高清完整版| 日韩欧美亚洲国产另类| 色乱码一区二区三区88| 国产一区二区免费看| 亚洲成av人影院| 亚洲欧洲日韩女同| 精品国产一二三| 欧美视频你懂的| 99久久精品免费看国产免费软件| 捆绑调教美女网站视频一区| 亚洲一二三级电影| 综合精品久久久| 日本一区二区三区免费乱视频| 欧美日韩一区二区三区在线看| a级高清视频欧美日韩| 国产精品一级二级三级| 肉色丝袜一区二区| 亚洲电影欧美电影有声小说| 国产精品久久看| 国产欧美日韩另类视频免费观看| 欧美一级日韩免费不卡| 欧美高清www午色夜在线视频| 成人免费福利片| 国产成人aaaa| 国产99久久精品| 国产91丝袜在线播放九色| 久久丁香综合五月国产三级网站| 亚洲第一成人在线| 亚洲一级二级在线| 亚洲乱码日产精品bd| 亚洲欧美色综合| 一区二区三区中文在线| 亚洲欧美一区二区不卡| 亚洲精品视频自拍| 亚洲美女少妇撒尿| 亚洲精品成人在线| 亚洲精品日产精品乱码不卡| 伊人婷婷欧美激情| 伊人婷婷欧美激情| 亚洲一区二区在线免费看| 一区二区三区在线视频观看| 亚洲精品国产第一综合99久久| 亚洲丝袜另类动漫二区| 亚洲欧美另类图片小说| 亚洲国产精品久久不卡毛片| 亚洲一区二区偷拍精品| 日日欢夜夜爽一区| 久久狠狠亚洲综合| 国产91色综合久久免费分享| 成人激情av网| 91久久精品一区二区三区| 欧美日韩一区二区三区在线看| 欧美精品在线观看一区二区| 日韩丝袜情趣美女图片| 国产午夜精品久久| 国产精品理论片| 亚洲一区二区欧美日韩| 美女www一区二区| 懂色av中文字幕一区二区三区| 色成年激情久久综合| 欧美日韩一区不卡| 国产亚洲欧美激情| 一区二区三区中文在线| 久99久精品视频免费观看| av综合在线播放| 欧美精品第1页| 国产亚洲一二三区| 亚洲一区在线免费观看| 国产乱子轮精品视频| 色婷婷久久99综合精品jk白丝| 欧美一级专区免费大片| 国产精品色哟哟网站| 首页综合国产亚洲丝袜| 床上的激情91.| 欧美一区二区三区四区久久| 国产日韩精品一区二区三区在线| 亚洲欧美视频在线观看视频| 久久精品国产精品亚洲综合| 91片在线免费观看| 国产亚洲精品久| 秋霞午夜鲁丝一区二区老狼| 成人91在线观看| 日韩久久精品一区|