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

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

?? os_core.c

?? LPC2104/5/6的嵌入式程序及其仿真文件,適合入門指導
?? 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一区二区三区免费野_久草精品视频
欧美日韩国产综合视频在线观看| 紧缚奴在线一区二区三区| k8久久久一区二区三区| 国产精品久久久久影院老司| 成人高清视频在线| 一区二区三区中文字幕电影| 欧美色涩在线第一页| 日韩精品一级中文字幕精品视频免费观看| 欧美老年两性高潮| 精品亚洲国产成人av制服丝袜| 国产亚洲婷婷免费| 91国模大尺度私拍在线视频| 日韩精品亚洲一区二区三区免费| 日韩欧美一级精品久久| 国产精品香蕉一区二区三区| 国产精品不卡一区二区三区| 欧美性猛片aaaaaaa做受| 男人的天堂亚洲一区| 久久精品人人爽人人爽| 91丝袜美女网| 奇米影视一区二区三区| 国产香蕉久久精品综合网| 91性感美女视频| 全国精品久久少妇| 日韩伦理免费电影| 日韩视频在线一区二区| 成人禁用看黄a在线| 午夜av一区二区三区| 久久久99精品免费观看| 91国内精品野花午夜精品| 精品在线一区二区| 亚洲一线二线三线视频| 久久亚区不卡日本| 欧美片网站yy| 欧美一区日韩一区| 91在线视频网址| 看电视剧不卡顿的网站| 亚洲嫩草精品久久| 精品国产a毛片| 欧美性色aⅴ视频一区日韩精品| 国产一区 二区 三区一级| 亚洲国产精品久久不卡毛片| 久久精品一区二区三区不卡牛牛| 亚洲日本在线a| 久久综合色一综合色88| 欧美精三区欧美精三区| 91在线视频播放地址| 国产麻豆午夜三级精品| 蜜臀av在线播放一区二区三区| 中文字幕一区免费在线观看| 2021中文字幕一区亚洲| 91精品国产品国语在线不卡| 99久久精品国产一区二区三区 | 成人一区二区三区在线观看 | 美女一区二区久久| 亚洲成人中文在线| 亚洲一区二区三区中文字幕| 国产精品久久毛片a| 久久久久久9999| 精品动漫一区二区三区在线观看| 欧美高清视频在线高清观看mv色露露十八 | 中文字幕日本乱码精品影院| 久久伊99综合婷婷久久伊| 在线综合视频播放| 欧美日韩国产首页| 欧美日韩不卡一区二区| 在线免费亚洲电影| 欧美伊人久久久久久午夜久久久久| 成人91在线观看| 成人午夜又粗又硬又大| 国产精品自拍在线| 国产在线看一区| 捆绑紧缚一区二区三区视频| 免费成人性网站| 麻豆久久久久久| 亚洲1区2区3区4区| 日韩av一区二区三区四区| 丝瓜av网站精品一区二区| 亚洲va国产天堂va久久en| 亚洲电影一级片| 日本视频一区二区三区| 日本不卡123| 精品亚洲成a人| 成人午夜短视频| 91亚洲精华国产精华精华液| 99久久er热在这里只有精品15| 91在线看国产| 欧美伊人精品成人久久综合97| 91国偷自产一区二区三区成为亚洲经典 | 九九精品视频在线看| 精品午夜久久福利影院| 国产激情一区二区三区| 成人午夜免费av| av在线这里只有精品| 成人欧美一区二区三区1314| 国产精品乱人伦一区二区| 亚洲视频一区在线| 亚洲图片欧美综合| 精久久久久久久久久久| 国产成人福利片| 色偷偷成人一区二区三区91| 欧美麻豆精品久久久久久| 日韩精品一区二区三区中文不卡 | 亚洲另类一区二区| 亚洲成人三级小说| 激情六月婷婷综合| jvid福利写真一区二区三区| 欧美性受xxxx黑人xyx性爽| 日韩美女一区二区三区四区| 国产精品美女一区二区三区| 亚洲美女视频一区| 日韩在线一区二区| 国产91清纯白嫩初高中在线观看| 色哟哟日韩精品| 日韩午夜电影在线观看| 中文字幕一区二区三区蜜月| 爽爽淫人综合网网站| 国产91综合网| 欧美日韩精品欧美日韩精品一 | 成人av在线资源网| 91精品久久久久久蜜臀| 亚洲乱码日产精品bd| 乱中年女人伦av一区二区| 国产真实乱偷精品视频免| 北条麻妃一区二区三区| 欧美疯狂性受xxxxx喷水图片| 精品国产91洋老外米糕| 亚洲人成精品久久久久久| 久久久久久久久久久99999| 欧美日本视频在线| 在线一区二区三区四区| 成人一区二区三区在线观看| 久久97超碰国产精品超碰| 午夜在线成人av| 一区二区三区欧美久久| 亚洲国产精品久久久久秋霞影院| 国产精品超碰97尤物18| 日本一区二区三区在线观看| 欧美精品电影在线播放| 一本色道久久综合亚洲91| 国产精品亚洲午夜一区二区三区 | 欧美综合久久久| 91免费看`日韩一区二区| 国产成人av电影在线观看| 精品亚洲欧美一区| 久久精品二区亚洲w码| 蜜臀av性久久久久蜜臀aⅴ| 婷婷成人综合网| 日韩中文字幕91| 亚洲国产精品久久一线不卡| 亚洲在线观看免费视频| 亚洲三级免费观看| 亚洲欧美色图小说| 一区二区三区国产精华| 亚洲激情中文1区| 亚洲一区在线观看免费| 亚洲第一成人在线| 亚洲成人免费av| 男女男精品视频网| 国模大尺度一区二区三区| 国产精品亚洲一区二区三区在线| 国产乱对白刺激视频不卡| 国产a区久久久| 国产91丝袜在线播放0| 99re在线视频这里只有精品| 91丨九色丨尤物| 欧美日韩视频在线观看一区二区三区| 在线免费观看不卡av| 欧美少妇性性性| 日韩欧美自拍偷拍| 欧美精品一区视频| 国产精品欧美一区二区三区| 欧美激情一区不卡| 亚洲精品菠萝久久久久久久| 亚洲精品国产一区二区三区四区在线 | 欧美午夜精品一区二区三区| 日韩视频一区二区三区在线播放| 日韩精品在线一区| 国产精品久久久久久亚洲毛片| 亚洲精品国久久99热| 五月天网站亚洲| 国产制服丝袜一区| 日本韩国欧美在线| 亚洲精品一区二区三区精华液| 国产精品美女视频| 婷婷夜色潮精品综合在线| 国产毛片精品国产一区二区三区| 色综合久久综合| 日韩精品在线网站| 一区二区三区四区在线播放| 久久超碰97中文字幕| 成人免费va视频| 亚洲一区二区三区国产| 丝袜美腿一区二区三区| 国产v综合v亚洲欧| 777午夜精品免费视频| 中文字幕一区在线观看| 久久99国产乱子伦精品免费| 在线观看精品一区| 欧美激情一区二区三区在线|