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

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

?? os_core.c

?? TFT LCD gui 液晶屏測試程序。
?? 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 "uC_OS.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在线你懂得| 99r精品视频| 一本色道久久综合狠狠躁的推荐 | 悠悠色在线精品| 国产日韩欧美精品在线| 欧美电影免费观看高清完整版在线 | 色狠狠桃花综合| a亚洲天堂av| 成人免费福利片| 国产精品88av| 国产91精品在线观看| 国产成a人无v码亚洲福利| 国产一区二区精品久久| 精一区二区三区| 国产乱人伦偷精品视频免下载| 久久99九九99精品| 久久不见久久见中文字幕免费| 日本美女一区二区三区视频| 免费成人av在线播放| 日本亚洲视频在线| 国产在线播精品第三| 精品一区二区三区在线播放| 另类的小说在线视频另类成人小视频在线 | 日韩1区2区3区| 国产精品77777| 欧美偷拍一区二区| 久久蜜臀中文字幕| 亚洲.国产.中文慕字在线| 久久66热偷产精品| 欧美综合欧美视频| 国产亚洲综合在线| 日韩成人免费看| 99久久精品国产导航| 日韩欧美二区三区| 一级特黄大欧美久久久| 国产真实乱偷精品视频免| 欧美亚洲综合一区| 中文字幕一区视频| 国产精品99久久久久久有的能看| 精品视频1区2区| 亚洲手机成人高清视频| 久久精品国产99国产精品| 欧美在线免费视屏| 亚洲人成亚洲人成在线观看图片| 午夜av区久久| 欧美在线free| 亚洲精品一二三| av一二三不卡影片| 国产欧美日韩在线| 国产麻豆视频一区| 日韩精品一区二区三区在线播放 | 欧美午夜免费电影| 亚洲女性喷水在线观看一区| 国产成人av一区二区三区在线观看| 欧美日韩成人在线| 亚洲夂夂婷婷色拍ww47| 91丝袜美腿高跟国产极品老师 | 99久久婷婷国产| 中文字幕精品—区二区四季| 韩日av一区二区| 精品对白一区国产伦| 日本大胆欧美人术艺术动态| 欧美人与禽zozo性伦| 亚洲bt欧美bt精品| 7777精品伊人久久久大香线蕉| 亚洲午夜精品在线| 51午夜精品国产| 日韩电影免费一区| 日韩小视频在线观看专区| 秋霞成人午夜伦在线观看| 日韩午夜中文字幕| 国产乱子伦一区二区三区国色天香| 日韩精品最新网址| 精品一区二区久久久| 久久久噜噜噜久久中文字幕色伊伊 | 午夜电影网一区| 日韩视频中午一区| 国内精品免费在线观看| 国产日韩精品一区二区浪潮av| 国产一区二区三区黄视频| 久久精品一区蜜桃臀影院| 成人网在线播放| 亚洲综合色自拍一区| 日韩一区二区三区在线视频| 国产一区二区三区免费播放 | 亚洲高清中文字幕| 日韩欧美激情四射| 成人开心网精品视频| 又紧又大又爽精品一区二区| 91精品婷婷国产综合久久性色| 美国毛片一区二区| 国产精品拍天天在线| 欧美亚洲日本国产| 国内精品伊人久久久久av影院| 中文字幕精品一区| 欧美另类z0zxhd电影| 国产成人亚洲综合a∨婷婷 | 欧美午夜精品久久久久久孕妇| 亚洲国产日韩在线一区模特| 日韩精品中文字幕一区二区三区 | 毛片不卡一区二区| 亚洲欧美自拍偷拍色图| 欧美一级搡bbbb搡bbbb| 不卡一二三区首页| 日一区二区三区| 国产日韩欧美综合在线| 欧美美女直播网站| 99久久婷婷国产综合精品| 蜜臀av在线播放一区二区三区| 国产精品二三区| 欧美成人精精品一区二区频| 成人午夜在线视频| 九一久久久久久| 五月天网站亚洲| 国产精品久久三区| 久久综合色综合88| 欧美老肥妇做.爰bbww视频| 国产ts人妖一区二区| 日本不卡视频在线观看| 国产精品久久久久9999吃药| 欧美一二三区精品| 欧美日韩国产天堂| 色哟哟在线观看一区二区三区| 九色综合国产一区二区三区| 亚洲成人av在线电影| 亚洲人成精品久久久久| 国产精品污www在线观看| 欧美一区二区成人| 欧美日韩亚洲高清一区二区| 91亚洲精品一区二区乱码| 国产综合色在线| 蜜桃av一区二区三区电影| 亚洲国产aⅴ成人精品无吗| 综合欧美亚洲日本| 国产精品久久三| 久久久久久久久久久黄色| 欧美成人伊人久久综合网| 欧美精品 日韩| 欧美日韩不卡在线| 欧美午夜理伦三级在线观看| 99久久精品情趣| 99久久国产综合精品麻豆| 成人蜜臀av电影| 成人免费视频播放| 成a人片国产精品| 91亚洲精华国产精华精华液| av在线播放一区二区三区| 成人动漫中文字幕| 成人高清视频在线观看| av一二三不卡影片| 一本色道亚洲精品aⅴ| 欧美亚洲高清一区| 欧美日韩一区二区电影| 欧美久久一区二区| 欧美成人vr18sexvr| 久久亚洲一级片| 国产视频911| 中文字幕中文字幕在线一区| 综合久久久久久久| 首页国产欧美日韩丝袜| 青青草精品视频| 精品亚洲国内自在自线福利| 国产精品一区二区久久不卡| 成人一级视频在线观看| 一本大道av伊人久久综合| 欧美在线视频不卡| 日韩区在线观看| 欧美国产1区2区| 自拍偷拍亚洲激情| 肉肉av福利一精品导航| 久久国产福利国产秒拍| 福利91精品一区二区三区| 91福利区一区二区三区| 日韩午夜av电影| 国产精品高潮久久久久无| 亚洲人成网站影音先锋播放| 日韩高清一级片| 粉嫩欧美一区二区三区高清影视| 在线观看欧美黄色| 久久精品夜夜夜夜久久| 亚洲在线视频一区| 国产一区二区久久| 欧美色网站导航| 欧美激情中文不卡| 日本系列欧美系列| 99re热这里只有精品视频| 538prom精品视频线放| 亚洲素人一区二区| 国产麻豆精品一区二区| 欧美久久久影院| 亚洲欧美另类久久久精品2019| 久久99日本精品| 91精品婷婷国产综合久久性色| 国产农村妇女毛片精品久久麻豆|