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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? os_core.c

?? ucosii下的arm9LCD程序
?? 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()

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美电影在线| 久久九九99视频| 国产在线视频精品一区| 亚洲色欲色欲www| 精品日本一线二线三线不卡| 一本到三区不卡视频| 国内精品视频一区二区三区八戒| 亚洲精品国产高清久久伦理二区| 久久久一区二区三区| 欧美久久久久久蜜桃| 97精品久久久午夜一区二区三区| 久久成人羞羞网站| 亚洲成人午夜电影| 亚洲欧美另类图片小说| 欧美国产1区2区| 精品卡一卡二卡三卡四在线| 欧美日韩免费一区二区三区视频| av一二三不卡影片| 国产传媒日韩欧美成人| 蜜臀91精品一区二区三区| 亚洲男人天堂av| 一级日本不卡的影视| 国产日韩欧美一区二区三区乱码 | 成人免费视频国产在线观看| 奇米888四色在线精品| 一区二区三区四区视频精品免费 | 26uuu国产在线精品一区二区| 欧美日韩精品欧美日韩精品一综合| 99久精品国产| 成人av电影在线| 国产寡妇亲子伦一区二区| 国产一区二区在线电影| 精品一区二区精品| 另类专区欧美蜜桃臀第一页| 视频一区在线播放| 日韩精品一二三区| 视频一区二区欧美| 日韩激情中文字幕| 免费成人美女在线观看| 秋霞电影网一区二区| 日本美女一区二区| 免费精品视频在线| 久久国产精品无码网站| 久久97超碰国产精品超碰| 九色综合狠狠综合久久| 麻豆精品在线播放| 激情综合网av| 国产乱码精品一品二品| 国产成人在线视频网址| 成人av资源在线观看| 99re这里只有精品首页| 欧美亚洲国产一区二区三区va| 欧美在线视频不卡| 欧美一区二区三区人| 欧美不卡一区二区| 国产精品沙发午睡系列990531| 综合激情网...| 亚欧色一区w666天堂| 欧美aⅴ一区二区三区视频| 狠狠色丁香久久婷婷综合_中 | 欧美三级三级三级| 欧美乱妇一区二区三区不卡视频| 欧美一激情一区二区三区| 亚洲精品一区二区精华| 国产精品天美传媒| 一区二区三区不卡视频在线观看 | 日韩av在线播放中文字幕| 免费成人av资源网| 福利电影一区二区三区| 91美女片黄在线| 日韩免费成人网| 中文字幕精品在线不卡| 亚洲一区二区三区四区五区中文| 人人精品人人爱| 欧美影院午夜播放| 日韩一级完整毛片| 欧美极品aⅴ影院| 午夜国产不卡在线观看视频| 久久99最新地址| 91麻豆精品视频| 欧美大片一区二区| 一区二区在线免费观看| 国内精品写真在线观看| 欧美亚洲国产一卡| 欧美国产综合一区二区| 五月激情六月综合| 福利一区二区在线观看| 欧美日韩和欧美的一区二区| 久久精品亚洲乱码伦伦中文| 一区二区日韩av| 国产大陆亚洲精品国产| 91精品国产入口| 国产精品区一区二区三| 日韩精品成人一区二区在线| 成人动漫一区二区在线| 日韩一卡二卡三卡四卡| 中文字幕人成不卡一区| 日韩高清在线观看| 91丝袜美女网| 久久婷婷一区二区三区| 午夜视频久久久久久| 成人一区二区在线观看| 日韩欧美在线123| 亚洲视频电影在线| 国产激情一区二区三区四区| 91精品国产日韩91久久久久久| 亚洲少妇中出一区| 成人免费三级在线| 久久欧美中文字幕| 麻豆久久一区二区| 制服丝袜中文字幕一区| 亚洲国产成人高清精品| 99久久er热在这里只有精品15 | 性做久久久久久免费观看 | 日韩免费成人网| 天天综合天天综合色| 一本一道久久a久久精品| 国产日韩影视精品| 九色综合狠狠综合久久| 欧美一区二区三区四区在线观看 | 中文在线资源观看网站视频免费不卡 | aaa国产一区| 久久久www成人免费无遮挡大片| 人禽交欧美网站| 欧美猛男男办公室激情| 亚洲成av人片在线| 欧美日韩免费在线视频| 婷婷成人综合网| 欧美日韩高清在线播放| 午夜欧美2019年伦理| 欧美丝袜丝nylons| 亚洲一区二区成人在线观看| 在线看一区二区| 洋洋成人永久网站入口| 91久久免费观看| 亚洲r级在线视频| 欧美日韩国产成人在线91| 三级不卡在线观看| 91精品久久久久久久久99蜜臂| 天堂蜜桃一区二区三区| 欧美一区二区三区在| 久久国产婷婷国产香蕉| 精品国产伦一区二区三区观看体验| 日本一道高清亚洲日美韩| 欧美一区二区三区四区久久| 美女视频黄a大片欧美| 久久婷婷国产综合国色天香| 国产成人免费xxxxxxxx| 中文字幕中文字幕中文字幕亚洲无线| 91在线一区二区| 亚洲国产精品欧美一二99| 欧美精品乱人伦久久久久久| 美女高潮久久久| 久久久久久久久久久久久夜| 欧美日韩成人激情| 日韩和欧美一区二区三区| 精品国精品自拍自在线| 粉嫩aⅴ一区二区三区四区| 日韩伦理电影网| 欧美美女一区二区三区| 另类中文字幕网| 中文字幕日本不卡| 欧美肥妇bbw| 国产91精品精华液一区二区三区| 亚洲免费av高清| 欧美一区二区三区播放老司机| 国产激情视频一区二区在线观看| 国产精品免费看片| 欧美日韩国产综合一区二区三区| 经典一区二区三区| 亚洲视频 欧洲视频| 日韩一级黄色大片| 99久久国产综合色|国产精品| 日韩综合一区二区| 日本一区二区三区久久久久久久久不 | 国产一区二三区好的| 国产精品短视频| 欧美一三区三区四区免费在线看| 国产精品资源在线看| 一区二区高清视频在线观看| 精品国产乱码久久久久久图片| 91在线看国产| 国产综合一区二区| 最新久久zyz资源站| 欧美一二三在线| 一本大道av一区二区在线播放| 久久99精品国产91久久来源| 伊人婷婷欧美激情| 久久九九久精品国产免费直播| 欧美三级日韩三级| 成人一区二区三区| 日本欧美一区二区| 中文字幕一区二区不卡| 精品国产免费人成电影在线观看四季| 色综合视频一区二区三区高清| 国产二区国产一区在线观看 | av在线免费不卡| 久久精品99国产精品日本| 亚洲一区二区精品久久av| 日本一区二区成人|