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

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

?? os_core.c

?? 基于飛利浦ARM7 LPC214X的u/COS+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 "..\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()
*              and you MUST have created at least one task.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人网在线播放| 色诱视频网站一区| 欧美成人精品高清在线播放 | 日韩一级免费一区| 亚洲一区精品在线| 在线观看日韩一区| 亚洲精品视频在线观看免费| 91香蕉视频在线| 亚洲三级免费观看| 色综合天天综合色综合av | 亚洲欧美怡红院| 99精品视频中文字幕| 亚洲图片你懂的| 色综合婷婷久久| 夜夜精品视频一区二区| 欧美体内she精视频| 亚洲国产成人精品视频| 欧美精品日日鲁夜夜添| 日本美女一区二区| 欧美xfplay| 国产一区二区不卡在线| 国产亚洲自拍一区| www.色综合.com| 亚洲在线免费播放| 欧美群妇大交群的观看方式| 91免费精品国自产拍在线不卡| 国产精品久久久久久久久免费丝袜| 91丨porny丨在线| 亚洲成人激情自拍| 日韩三级中文字幕| 国产精品亚洲午夜一区二区三区 | 日韩三级伦理片妻子的秘密按摩| 久久精品国产精品亚洲红杏 | 久久网这里都是精品| 福利电影一区二区| 亚洲欧美经典视频| 欧美日韩国产另类一区| 久久er精品视频| 国产精品每日更新| 在线精品视频小说1| 天堂久久一区二区三区| 精品国产乱码久久久久久久久| 夫妻av一区二区| 亚洲午夜一区二区三区| 日韩三级中文字幕| 成人免费毛片aaaaa**| 一区二区三区美女视频| 日韩欧美不卡一区| jlzzjlzz亚洲日本少妇| 日精品一区二区| 国产精品天干天干在线综合| 在线看一区二区| 免费成人在线网站| 国产精品不卡在线观看| 欧美精品aⅴ在线视频| 国产精品一区一区| 亚洲一区二区欧美| 国产午夜精品一区二区三区视频| 在线免费亚洲电影| 国产精品亚洲一区二区三区妖精 | 国产精品视频九色porn| 在线观看三级视频欧美| 国内精品免费在线观看| 亚洲精品高清在线| 26uuu亚洲综合色| 欧洲av在线精品| 国产高清久久久久| 午夜成人在线视频| 国产精品大尺度| 日韩精品一区二区三区中文不卡| 972aa.com艺术欧美| 91成人看片片| 美女视频一区二区三区| 亚洲欧美日韩一区| 久久久久免费观看| 欧美老年两性高潮| 9久草视频在线视频精品| 日本三级亚洲精品| 亚洲欧美偷拍另类a∨色屁股| 精品国产乱子伦一区| 在线免费观看视频一区| 国产精品一区二区无线| 肉丝袜脚交视频一区二区| 亚洲欧洲另类国产综合| 精品电影一区二区三区| 欧美色倩网站大全免费| 99re这里只有精品首页| 国产高清精品在线| 久久国产人妖系列| 婷婷国产v国产偷v亚洲高清| 中文字幕一区在线观看视频| 久久久久亚洲蜜桃| 日韩免费性生活视频播放| 在线精品观看国产| av亚洲精华国产精华精华| 国产尤物一区二区| 青青草97国产精品免费观看无弹窗版| 一区二区三区高清| 国产精品久久久久7777按摩| 久久久噜噜噜久久中文字幕色伊伊| 91精品国产综合久久精品app| 色婷婷综合久久久| av网站免费线看精品| 国产成人精品影视| 精品一区二区三区在线播放| 日韩黄色免费网站| 亚洲第一精品在线| 亚洲精品美国一| 亚洲私人影院在线观看| 国产精品福利一区二区| 国产午夜亚洲精品羞羞网站| 久久综合狠狠综合久久综合88| 日韩欧美第一区| 日韩欧美不卡一区| 日韩欧美国产1| 91精品国产综合久久久蜜臀粉嫩 | 成人激情图片网| 国产精品白丝jk黑袜喷水| 九九精品视频在线看| 麻豆91在线看| 麻豆国产精品视频| 美女视频一区二区三区| 久久国产欧美日韩精品| 久色婷婷小香蕉久久| 免费在线观看一区二区三区| 蜜臂av日日欢夜夜爽一区| 日韩在线卡一卡二| 青青草精品视频| 欧美日韩国产a| 欧美日韩精品久久久| 欧美裸体一区二区三区| 欧美日韩二区三区| 欧美色老头old∨ideo| 欧美男同性恋视频网站| 这里只有精品视频在线观看| 3d动漫精品啪啪1区2区免费| 欧美一区二区视频在线观看2020| 欧美一区二区福利视频| 精品国产乱码久久久久久夜甘婷婷 | 亚洲欧美一区二区三区国产精品| 国产精品国产三级国产aⅴ入口| 国产精品福利av| 一区二区三区在线观看欧美| 亚洲国产综合色| 日本欧美久久久久免费播放网| 久久爱www久久做| 国产福利一区二区三区视频| 风间由美中文字幕在线看视频国产欧美| 高清shemale亚洲人妖| 91香蕉视频污| 欧美日韩一区二区三区四区| 日韩一区二区三区高清免费看看| 精品国产1区二区| 中文字幕高清一区| 一区二区三区加勒比av| 日韩av网站在线观看| 激情偷乱视频一区二区三区| 国产毛片精品视频| 91年精品国产| 3d动漫精品啪啪1区2区免费| 久久这里只有精品视频网| 中文字幕在线一区二区三区| 一个色综合av| 久久综合综合久久综合| 成人听书哪个软件好| 91精品1区2区| 欧美一区二区大片| 国产欧美日韩在线视频| 亚洲一区在线观看视频| 久久99久久精品欧美| av在线不卡电影| 91精品国产综合久久精品app| 久久精品一区蜜桃臀影院| 亚洲精品中文在线| 免费高清成人在线| bt欧美亚洲午夜电影天堂| 欧美日韩精品免费| 国产人妖乱国产精品人妖| 亚洲国产一区在线观看| 国产麻豆精品95视频| 欧美性生活大片视频| 精品黑人一区二区三区久久| 亚洲天堂精品在线观看| 日本中文字幕一区二区有限公司| 国产精品综合二区| 欧美视频精品在线观看| 久久精品亚洲精品国产欧美kt∨ | 99视频在线观看一区三区| 欧美亚日韩国产aⅴ精品中极品| 精品日韩av一区二区| 亚洲视频在线一区| 精品一区二区在线免费观看| 色婷婷香蕉在线一区二区| 精品91自产拍在线观看一区| 一区二区三区日本| 丰满岳乱妇一区二区三区| 69堂成人精品免费视频| 亚洲同性gay激情无套| 国产综合色产在线精品 | 99精品视频在线观看|