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

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

?? os_core.c

?? UCOSII在mcs12dg128上的移植
?? 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 "..\Sources\UCOS2\CONFIG_UCOS\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一区二区三区免费野_久草精品视频
日韩欧美亚洲一区二区| 国产精品青草综合久久久久99| 欧美一区二区播放| 国产精品久久久久一区 | 日本电影欧美片| 欧美一级片在线| 亚洲欧美日韩久久精品| 国产伦精品一区二区三区免费迷| 91高清在线观看| 国产精品美女一区二区三区| 成人免费毛片片v| 欧美麻豆精品久久久久久| 国产精品高清亚洲| 国产成人精品免费| 久久影音资源网| 免播放器亚洲一区| 欧美日韩国产免费| 亚洲免费av高清| 成人免费高清在线观看| 久久网这里都是精品| 美国十次了思思久久精品导航| 欧美午夜宅男影院| 伊人婷婷欧美激情| 在线看不卡av| 亚洲小说欧美激情另类| 色婷婷av久久久久久久| 亚洲欧洲日本在线| 成人av电影免费在线播放| 国产午夜精品久久久久久久| 国产在线精品视频| 国产午夜精品久久| 成人a级免费电影| 国产精品久久久久久久久动漫| 成人午夜精品一区二区三区| 国产欧美一区二区在线| 成人综合婷婷国产精品久久蜜臀| 国产片一区二区| 99re视频这里只有精品| 亚洲日本电影在线| 欧美中文一区二区三区| 亚洲一线二线三线视频| 欧美日韩国产精选| 热久久国产精品| 久久久精品人体av艺术| 国产精品一区久久久久| 国产精品人人做人人爽人人添 | 福利一区二区在线| 午夜精品久久久久久久久久| 欧美日韩精品一区二区三区| 日本伊人精品一区二区三区观看方式| 欧美日韩国产影片| 久久电影国产免费久久电影| 26uuu精品一区二区| 成人黄色在线视频| 一级女性全黄久久生活片免费| 欧美偷拍一区二区| 久久99精品国产.久久久久久| 国产日产欧美精品一区二区三区| 99re免费视频精品全部| 午夜视频在线观看一区| 337p粉嫩大胆色噜噜噜噜亚洲| 福利一区福利二区| 性久久久久久久久久久久| 精品国产伦一区二区三区观看方式| 国产成人精品影视| 亚洲一区二区三区四区在线观看 | 日韩三级av在线播放| 国产福利视频一区二区三区| 一区二区三区蜜桃| 精品国产99国产精品| 91麻豆免费看片| 另类小说色综合网站| 中文字幕一区二区三区不卡在线 | 成人午夜免费av| 亚洲成人tv网| 国产精品毛片高清在线完整版 | 色先锋aa成人| 国产精品影视在线观看| 亚洲精品国久久99热| 久久久影院官网| 欧美日本乱大交xxxxx| 成人激情电影免费在线观看| 蜜乳av一区二区| 中文字幕日韩av资源站| 精品国产一区二区亚洲人成毛片| 色婷婷一区二区三区四区| 国产一区二区久久| 午夜在线成人av| 亚洲日本在线天堂| 久久视频一区二区| 欧美一级在线免费| 欧美日韩国产一区二区三区地区| 成人午夜av影视| 国产一区二区三区国产| 日本欧美肥老太交大片| 亚洲成人福利片| 一区二区三区蜜桃| 亚洲免费观看高清完整版在线观看熊| 精品久久久三级丝袜| 欧美一区二区三区视频| 欧美性感一类影片在线播放| 91在线精品一区二区三区| 国产成人精品免费视频网站| 极品少妇xxxx精品少妇| 麻豆国产欧美日韩综合精品二区| 亚洲国产精品一区二区www在线| 中文字幕一区av| 亚洲欧洲国产专区| 自拍偷拍亚洲综合| 亚洲啪啪综合av一区二区三区| 中文字幕va一区二区三区| 国产亚洲综合色| 国产片一区二区三区| 国产免费观看久久| 国产精品美女www爽爽爽| 中文字幕在线一区免费| 中文字幕一区二区三区不卡在线 | 午夜电影一区二区| 亚洲国产综合91精品麻豆| 亚洲国产综合视频在线观看| 亚洲一区中文日韩| 日日摸夜夜添夜夜添精品视频| 午夜精品久久久久久久99樱桃| 三级久久三级久久| 麻豆国产精品777777在线| 国产一区二区三区香蕉| 成人一区二区三区视频在线观看 | 欧美精品第1页| 欧美一区二区福利视频| 337p粉嫩大胆噜噜噜噜噜91av| 国产欧美一区二区三区沐欲| 中文字幕高清一区| 亚洲在线中文字幕| 日韩在线播放一区二区| 精品在线一区二区三区| 国产69精品久久777的优势| 色欧美乱欧美15图片| 欧美区视频在线观看| 欧美精品一区二区三区在线播放 | 日韩一区二区中文字幕| 精品国产91久久久久久久妲己| 久久久精品国产免费观看同学| 国产精品二三区| 亚洲福利一区二区| 国产一区亚洲一区| 91香蕉视频mp4| 日韩欧美一二三四区| 久久精品亚洲国产奇米99| 日本亚洲电影天堂| 丁香五精品蜜臀久久久久99网站| 在线观看中文字幕不卡| 欧美不卡激情三级在线观看| 国产精品久久一卡二卡| 亚洲成人激情av| 成人免费视频视频在线观看免费| 在线影院国内精品| 久久久噜噜噜久久人人看 | 久久精品人人爽人人爽| 亚洲黄一区二区三区| 久久国内精品自在自线400部| 成人高清免费在线播放| 欧美丰满嫩嫩电影| 日韩伦理电影网| 精品一区二区三区日韩| 欧美亚州韩日在线看免费版国语版| 日韩午夜激情av| 亚洲狠狠爱一区二区三区| 国产91精品入口| 日韩视频一区二区在线观看| 亚洲精选一二三| 从欧美一区二区三区| 欧美一级片在线| 亚洲一级在线观看| www.色综合.com| 337p粉嫩大胆噜噜噜噜噜91av| 亚洲国产一区二区在线播放| 成人av在线观| 欧美精品一区二区三区四区| 亚洲va韩国va欧美va精品| 一本一本久久a久久精品综合麻豆| 久久色在线观看| 精品一区二区三区在线播放视频| 欧美中文字幕久久| 亚洲欧美二区三区| 成人av网在线| 国产精品欧美久久久久无广告 | 91在线精品一区二区| 中文字幕精品三区| 国产成人欧美日韩在线电影| 久久这里只有精品6| 另类小说一区二区三区| 日韩久久久久久| 老司机精品视频导航| 欧美成人女星排行榜| 蜜臀久久99精品久久久久久9| 欧美高清hd18日本| 美女www一区二区| 日韩精品在线看片z| 精品一区二区影视| 日本一区二区三区在线观看|