亚洲欧美第一页_禁久久精品乱码_粉嫩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在线看国产| 色婷婷狠狠综合| 欧美视频自拍偷拍| 欧美丰满一区二区免费视频| 91精品国产综合久久国产大片| 欧美日韩小视频| 日韩精品中文字幕一区二区三区| 日韩欧美国产综合| 国产视频视频一区| 综合久久久久综合| 一区二区三区欧美亚洲| 亚洲高清免费观看高清完整版在线观看| 亚洲色图制服诱惑| 午夜欧美2019年伦理| 捆绑变态av一区二区三区| 极品美女销魂一区二区三区| 国产精品88av| 在线免费观看视频一区| 7777精品伊人久久久大香线蕉完整版| 日韩三区在线观看| 中文字幕日韩av资源站| 亚洲成人激情自拍| 国产成人精品一区二| 在线看不卡av| 久久亚洲一级片| 亚洲美女在线一区| 黄色日韩三级电影| 色菇凉天天综合网| 久久久久久久久97黄色工厂| 成人免费小视频| 青娱乐精品在线视频| 欧美撒尿777hd撒尿| 欧美一区二区三区在线观看视频| 久久蜜桃av一区精品变态类天堂| 亚洲欧美日韩精品久久久久| 免费观看30秒视频久久| av影院午夜一区| 欧美成人艳星乳罩| 亚洲国产毛片aaaaa无费看 | av在线一区二区三区| 欧美一级欧美三级在线观看| 亚洲欧洲精品天堂一级| 精品一区二区三区欧美| 欧美亚洲动漫另类| 日韩美女视频一区| 国产中文字幕一区| 91精品国产日韩91久久久久久| 日本一区二区综合亚洲| 蜜乳av一区二区三区| 一本大道久久a久久综合| 久久你懂得1024| 日韩高清不卡一区二区三区| 日本韩国精品在线| 中文字幕欧美一| www.久久精品| 国产精品伦理在线| 国产a精品视频| 久久综合色综合88| 国内成+人亚洲+欧美+综合在线| 欧美日韩成人一区| 亚洲综合av网| 在线视频国内一区二区| 亚洲人成网站色在线观看| 成人h动漫精品一区二| 久久综合视频网| 国产精一品亚洲二区在线视频| 日韩视频免费观看高清完整版| 亚洲 欧美综合在线网络| 日本韩国一区二区三区| 亚洲黄色小视频| 欧美性色黄大片| 亚洲成人av中文| 在线播放91灌醉迷j高跟美女 | 日本乱人伦一区| 亚洲亚洲人成综合网络| 91久久精品日日躁夜夜躁欧美| **性色生活片久久毛片| 91老师片黄在线观看| 一区二区三区在线观看欧美| 色94色欧美sute亚洲线路二| 综合欧美一区二区三区| 91九色02白丝porn| 日韩精品免费视频人成| 日韩欧美卡一卡二| 国产精品一区2区| 国产精品久久毛片a| 色视频欧美一区二区三区| 亚洲午夜在线电影| 欧美一区二区视频观看视频| 国产酒店精品激情| 亚洲男人的天堂网| 欧美一区二区三区免费视频| 国产一区久久久| 亚洲嫩草精品久久| 日韩精品在线网站| 成人av第一页| 日韩高清不卡在线| 中文av一区二区| 欧美伦理视频网站| 国产福利视频一区二区三区| 亚洲天堂精品在线观看| 91精品国产综合久久精品app| 精品一区二区三区视频在线观看| 国产精品久久久久久福利一牛影视| 91在线视频网址| 蜜臀91精品一区二区三区| 国产精品天美传媒| 欧美一级二级三级蜜桃| 成人激情免费网站| 美洲天堂一区二卡三卡四卡视频| 国产精品久久久久影视| 91精品蜜臀在线一区尤物| 成人午夜电影小说| 青青草成人在线观看| 综合av第一页| 久久久久97国产精华液好用吗| 91亚洲精华国产精华精华液| 蜜臂av日日欢夜夜爽一区| 亚洲欧洲制服丝袜| 久久久久久久久久久99999| 欧美精品九九99久久| 91视频在线观看| 国产东北露脸精品视频| 日本不卡高清视频| 亚洲一区免费在线观看| 国产精品久久久久久久久免费桃花 | 一本色道综合亚洲| 国产精品综合在线视频| 日韩av二区在线播放| 亚洲一区av在线| 亚洲免费在线观看| 国产精品久久久久影视| 久久久亚洲午夜电影| 欧美一级片免费看| 在线播放中文字幕一区| 欧美午夜精品一区二区三区 | av一区二区三区黑人| 狠狠色丁香九九婷婷综合五月| 天天av天天翘天天综合网| 亚洲一区二区综合| 一区二区在线观看不卡| 亚洲黄色免费电影| 亚洲乱码国产乱码精品精的特点 | 欧美岛国在线观看| 在线播放欧美女士性生活| 欧美视频日韩视频在线观看| 色欧美片视频在线观看在线视频| 成人免费va视频| 成人av影视在线观看| 99精品国产91久久久久久| 99视频在线观看一区三区| www.亚洲色图.com| 99精品久久99久久久久| 色综合久久中文综合久久牛| 91污在线观看| 欧美三级欧美一级| 91精品福利在线一区二区三区| 欧美精品自拍偷拍| 欧美videossexotv100| 精品成a人在线观看| 国产无遮挡一区二区三区毛片日本| 久久精品欧美一区二区三区麻豆| 久久久久久久精| 中文字幕一区视频| 亚洲一区二区三区四区在线| 亚洲大片在线观看| 韩国女主播一区二区三区| 顶级嫩模精品视频在线看| 色综合久久精品| 欧美一区二区三区日韩视频| 久久亚区不卡日本| 中文字幕字幕中文在线中不卡视频| 亚洲精品高清视频在线观看| 日韩中文字幕亚洲一区二区va在线| 日产国产欧美视频一区精品| 国产精品资源在线看| 91老师片黄在线观看| 日韩免费视频一区二区| 中文字幕日韩av资源站| 日韩影院精彩在线| 成人久久18免费网站麻豆| 欧美日韩国产综合一区二区三区 | 国产激情精品久久久第一区二区| 成人丝袜高跟foot| 欧美精品一卡两卡| 中文字幕乱码亚洲精品一区 | 精品欧美一区二区在线观看| 国产精品蜜臀av| 免费在线观看成人| 91在线码无精品| 国产偷国产偷精品高清尤物| 亚洲国产裸拍裸体视频在线观看乱了 | 日韩精品一区二区三区视频在线观看 |