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

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

?? os_core.c

?? 這是周立功的1138ARM 開發(fā)模板剛調(diào)好
?? C
?? 第 1 頁 / 共 4 頁
字號(hào):
/*
*********************************************************************************************************
*                                                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
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
制服丝袜亚洲精品中文字幕| 亚洲欧洲在线观看av| 国产午夜精品久久久久久久 | 国产老肥熟一区二区三区| 国产视频一区在线观看| 亚洲高清免费观看| 亚洲高清免费观看高清完整版在线观看| 一区精品在线播放| 国产精品婷婷午夜在线观看| 中文字幕一区二区日韩精品绯色| 国产精品久久久久久久浪潮网站| 奇米影视一区二区三区| 日韩精品专区在线| eeuss鲁片一区二区三区在线看| 久久久精品免费网站| 91精品国产欧美一区二区成人| 93久久精品日日躁夜夜躁欧美| 91蜜桃视频在线| 欧美日本一区二区三区四区| 欧美一区二区国产| 久久综合色婷婷| 91精品黄色片免费大全| 国产麻豆精品一区二区| 成人h动漫精品| 国产日韩欧美电影| 亚洲欧洲精品天堂一级| 久久久久国产精品麻豆ai换脸| 国产欧美精品一区二区色综合朱莉 | 美腿丝袜一区二区三区| 午夜视频在线观看一区二区三区| 欧美揉bbbbb揉bbbbb| 欧美在线视频日韩| 久久久久久97三级| 成人高清免费在线播放| 日韩在线卡一卡二| 夜夜嗨av一区二区三区网页 | 经典三级一区二区| 国产三级一区二区三区| 一本久久a久久免费精品不卡| 色综合天天综合给合国产| 免费日韩伦理电影| 日韩亚洲欧美中文三级| 天堂一区二区在线| 国产精品夜夜嗨| 欧美日韩和欧美的一区二区| 日韩中文欧美在线| 蜜臀av性久久久久av蜜臀妖精| 欧美日韩高清一区二区不卡| 一区二区三区欧美| 99精品久久只有精品| 91在线观看视频| 国产伦精一区二区三区| 99久久精品免费看国产 | 久久久久久久电影| **性色生活片久久毛片| 久久福利资源站| 亚洲一区二区在线观看视频| 成人av网址在线| 亚洲成人免费在线| 国产精品乱码人人做人人爱| 蜜臀久久久久久久| 国产人久久人人人人爽| 国内久久婷婷综合| 美腿丝袜亚洲综合| 在线观看不卡一区| 国产精品美女久久久久久久久久久| 亚洲精品免费播放| 久久国产夜色精品鲁鲁99| 欧美福利视频一区| 色吊一区二区三区| 欧美剧情电影在线观看完整版免费励志电影 | 成人高清在线视频| 欧美一级高清片| 亚洲欧美日韩国产成人精品影院| 夜夜操天天操亚洲| www.日韩大片| 亚洲综合在线观看视频| 久久99久久精品欧美| 日韩欧美综合在线| 久久麻豆一区二区| 亚洲欧美另类综合偷拍| 午夜视黄欧洲亚洲| 91在线视频播放地址| 国产精品一区二区无线| 国产性做久久久久久| 欧美欧美午夜aⅴ在线观看| 丝瓜av网站精品一区二区| 久久免费偷拍视频| 日韩一区二区三区四区| 久久9热精品视频| 中文字幕av不卡| 91国偷自产一区二区三区观看| 欧洲人成人精品| 亚洲男人的天堂一区二区| 精品久久久久久久久久久久久久久| 精品无码三级在线观看视频| 91精品国产一区二区三区| 日韩一区二区电影| 国产女人aaa级久久久级 | 夜夜亚洲天天久久| 91黄视频在线| 日本最新不卡在线| 欧美电影免费观看高清完整版在线观看 | 99视频有精品| 国产精品嫩草影院av蜜臀| 欧美日韩免费一区二区三区| 麻豆极品一区二区三区| 精品成人一区二区| 国产99精品视频| 一卡二卡三卡日韩欧美| 欧美高清你懂得| av福利精品导航| 免费视频最近日韩| 一区二区在线观看视频| 蓝色福利精品导航| 亚洲影院免费观看| 亚洲电影你懂得| 日韩精品91亚洲二区在线观看| 国产成人av影院| 2023国产精品自拍| 日韩精品午夜视频| 欧美视频中文一区二区三区在线观看| 欧美激情中文字幕一区二区| 七七婷婷婷婷精品国产| 欧美激情中文不卡| 狠狠色丁香久久婷婷综| 在线播放中文字幕一区| 亚洲午夜激情网页| 91视频免费播放| 亚洲视频1区2区| 成人av高清在线| 国产精品嫩草久久久久| 国产成人精品亚洲午夜麻豆| 久久美女高清视频| 国产精品小仙女| 久久婷婷国产综合精品青草| 国产一区视频在线看| 2017欧美狠狠色| 国产老肥熟一区二区三区| 久久婷婷国产综合国色天香| 精品一区二区三区在线播放视频 | 亚洲在线视频一区| 欧美日韩aaaaa| 亚洲一区二区三区美女| 在线观看一区日韩| 成人精品gif动图一区| 欧洲精品视频在线观看| 国产一区二区三区久久久| 亚洲成av人片一区二区梦乃| 精品视频一区二区不卡| 日韩精品欧美精品| 精品国产区一区| 国产成a人亚洲精| 成人欧美一区二区三区视频网页| 97精品国产露脸对白| 一区二区三区四区激情| 欧美日韩在线播放三区四区| 蜜桃视频在线观看一区| 久久久久国产一区二区三区四区 | 日韩一区二区不卡| 国产自产v一区二区三区c| 中日韩av电影| 在线观看www91| 久久aⅴ国产欧美74aaa| 国产精品久久久久国产精品日日 | 国产亚洲精品aa| av高清久久久| 五月天网站亚洲| 国产三级精品三级在线专区| 91美女在线观看| 韩国精品久久久| 成人欧美一区二区三区视频网页| 欧美日韩dvd在线观看| 国产一区二区在线视频| 一区二区三区资源| 欧美大片在线观看一区二区| 99麻豆久久久国产精品免费优播| 亚洲国产精品久久人人爱蜜臀| 日韩精品一区二区三区四区 | 欧美三级电影网| 国产精品一区在线| 亚洲成人一区二区在线观看| 久久网站最新地址| 欧美中文字幕一区二区三区| 久久99日本精品| 亚洲综合无码一区二区| 久久久综合激的五月天| 欧美私人免费视频| 国产成人综合在线| 日韩高清一区在线| 中文字幕在线一区免费| 日韩一级完整毛片| 色婷婷av一区| 国产乱码一区二区三区| 亚洲国产成人av好男人在线观看| 2020日本不卡一区二区视频| 欧美三级视频在线| 成人小视频在线| 久久9热精品视频| 午夜av电影一区|