亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产真实乱子伦精品视频| 91精品国产美女浴室洗澡无遮挡| 欧美美女视频在线观看| 一区二区三区不卡视频| jlzzjlzz亚洲日本少妇| 国产亚洲精品aa午夜观看| 极品少妇xxxx精品少妇偷拍| 2020国产精品久久精品美国| 免费在线一区观看| 久久综合成人精品亚洲另类欧美| 蜜臀久久99精品久久久久久9| 欧美最猛黑人xxxxx猛交| 亚洲成人动漫av| 久久久亚洲精品石原莉奈| 久久er99精品| 中文字幕日韩一区| 欧美肥大bbwbbw高潮| 国产亚洲欧美激情| 99久久久精品免费观看国产蜜| 一区二区成人在线观看| 亚洲精品一区二区三区精华液| 豆国产96在线|亚洲| 亚洲国产aⅴ天堂久久| 久久久亚洲精华液精华液精华液 | 在线精品视频免费播放| 亚洲男女一区二区三区| 99久久精品费精品国产一区二区| 亚洲你懂的在线视频| 久久蜜臀中文字幕| 欧美色欧美亚洲另类二区| av在线不卡网| 成人av免费观看| 午夜精品福利一区二区蜜股av| 国产女同互慰高潮91漫画| 欧美日韩国产三级| 岛国一区二区在线观看| 国模无码大尺度一区二区三区| 日韩中文字幕av电影| 天堂精品中文字幕在线| 亚洲人成网站在线| 亚洲激情六月丁香| 亚洲久草在线视频| 亚洲成人一区在线| 视频一区欧美精品| 一区二区欧美精品| 一区二区三区四区五区视频在线观看| 亚洲欧洲制服丝袜| 亚洲一区二区三区视频在线| 亚洲午夜电影在线观看| 亚洲柠檬福利资源导航| 五月天国产精品| 日本aⅴ免费视频一区二区三区| 美女网站一区二区| 人人狠狠综合久久亚洲| 久久精品久久久精品美女| 欧美日韩电影一区| 福利电影一区二区| 国产一区二区三区高清播放| 成人免费视频一区二区| 欧美精品久久一区二区三区| 久久久亚洲精品石原莉奈| 亚洲三级理论片| 一区二区高清视频在线观看| 偷窥少妇高潮呻吟av久久免费| 麻豆精品在线观看| 在线观看日韩国产| 亚洲欧洲在线观看av| 日韩和欧美一区二区| 欧美性猛片xxxx免费看久爱| 国产亚洲成年网址在线观看| 另类调教123区| 在线观看一区二区精品视频| 国产欧美一区二区精品忘忧草 | 国产精品一区二区男女羞羞无遮挡| 国产高清在线精品| 久久久久久黄色| 麻豆精品国产传媒mv男同| 91精品国产综合久久精品app | 国产激情91久久精品导航| 欧美日韩在线不卡| 依依成人精品视频| 在线观看不卡一区| 午夜精品在线看| 欧美日韩免费电影| 亚洲第一精品在线| 欧美午夜免费电影| 亚洲国产精品精华液网站| 在线观看视频一区| 亚洲一区二区偷拍精品| 99久久99久久精品免费观看| 亚洲精品五月天| 日韩视频123| 国产69精品久久久久777| 亚洲欧美激情插| 欧美无砖砖区免费| 精品在线亚洲视频| 日韩欧美中文一区| 香蕉久久夜色精品国产使用方法 | 国产精品久久福利| 欧美性大战xxxxx久久久| 亚洲乱码精品一二三四区日韩在线 | 91在线小视频| 免费成人在线观看视频| 国产精品成人一区二区三区夜夜夜| 国产精品1024| 日本va欧美va欧美va精品| 中文字幕一区免费在线观看| 欧美一区二区三区色| 风间由美中文字幕在线看视频国产欧美 | 91精品国产一区二区三区| 激情综合色丁香一区二区| 国产精品久久久久一区| 日韩三级伦理片妻子的秘密按摩| 国产高清视频一区| 久久成人18免费观看| 日本成人在线一区| 亚洲一卡二卡三卡四卡| 欧美国产激情二区三区| 久久麻豆一区二区| 日韩精品一区二区在线| 欧美一区二区三区人| 日韩欧美色综合网站| 日韩视频123| 7799精品视频| 久久久一区二区| 亚洲精品视频一区二区| 亚洲一卡二卡三卡四卡五卡| 亚洲欧洲精品一区二区精品久久久 | 日韩精品乱码免费| 一区二区成人在线视频| 国产午夜精品一区二区 | 风流少妇一区二区| 成人福利视频在线看| 成人免费视频视频在线观看免费| 国产精品一区二区久久精品爱涩 | 成人中文字幕电影| 成人h动漫精品一区二| 色偷偷88欧美精品久久久| 在线播放中文一区| 亚洲国产精品t66y| 亚洲午夜av在线| 成人午夜碰碰视频| 欧美午夜电影网| 中文字幕日韩精品一区| 狠狠色狠狠色综合日日91app| 99re这里都是精品| 久久一夜天堂av一区二区三区| 国产精品欧美一区喷水| 日韩精品一卡二卡三卡四卡无卡| 国产一区二区三区电影在线观看 | 秋霞午夜鲁丝一区二区老狼| 国产成a人亚洲精| 欧美变态凌虐bdsm| 午夜精品久久久久影视| 一本色道久久综合亚洲91 | 欧美性受xxxx黑人xyx| 国产精品久久三| 99久久婷婷国产综合精品电影| 日韩欧美视频在线| 精品一区二区三区蜜桃| 欧美日韩一区在线| 亚洲精品一二三四区| 91蝌蚪porny成人天涯| 亚洲少妇最新在线视频| 国产传媒一区在线| 日本一区二区三区国色天香| 国产精品99久久久久久久vr| 欧美成人精品1314www| 日韩精品视频网站| 欧美亚洲动漫精品| 麻豆91在线播放| 日本一区二区三区视频视频| 一本大道综合伊人精品热热| 国产精品灌醉下药二区| 91年精品国产| 性欧美疯狂xxxxbbbb| 91欧美一区二区| 亚洲一区二区三区四区在线| 欧洲精品中文字幕| 精品一二三四区| 国产亚洲精品久| 欧美亚洲国产一卡| 国产一区二区三区观看| 亚洲色欲色欲www在线观看| 色婷婷综合久久久| 国产乱理伦片在线观看夜一区| 欧美国产激情一区二区三区蜜月 | 国产成人在线视频网站| 亚洲国产精品精华液2区45| 欧美性极品少妇| 成人午夜又粗又硬又大| 久久国产精品72免费观看| 一区二区三区欧美久久| 国产偷国产偷精品高清尤物| 色婷婷综合久久久中文一区二区| 精品亚洲国内自在自线福利| 18涩涩午夜精品.www| 欧美激情在线观看视频免费| 精品久久久久久无| 在线综合亚洲欧美在线视频|