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

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

?? os_core.c

?? PIC18F452下的uCOS2移植成功代碼+MPLAB IDE V8.0的項目文件。結構非常精簡
?? 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
*********************************************************************************************************
*/

/* Microchip PIC18xxx specific - lookup in program memory because of limited RAM space */
rom INT8U  const  OSMapTbl[]   = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};
/* End Microchip PIC18xxx specific */

/*
*********************************************************************************************************
*                                       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)
*********************************************************************************************************
*/

/* Microchip PIC18xxx specific - lookup in program memory because of limited RAM space */
rom INT8U  const  OSUnMapTbl[] = {
/* End Microchip PIC18xxx specific */
    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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一区二区在线看片| 久久综合九色综合欧美就去吻 | 精品少妇一区二区三区 | 日韩精品一区国产麻豆| 亚洲日本va在线观看| 国模少妇一区二区三区| 欧美高清www午色夜在线视频| 国产欧美1区2区3区| 麻豆91在线观看| 精品视频一区 二区 三区| 中文字幕免费不卡在线| 国产麻豆精品在线| 日韩视频在线观看一区二区| 亚洲一区二区欧美| 91天堂素人约啪| 欧美国产成人在线| 国产一区二区三区国产| 精品处破学生在线二十三| 视频在线观看91| 欧美精品久久天天躁| 一区二区三区日韩精品| 99久久99久久免费精品蜜臀| 国产欧美视频一区二区| 国产精品69毛片高清亚洲| 精品国产91乱码一区二区三区| 日韩电影在线免费看| 欧美精品日韩综合在线| 午夜精品久久久久久久蜜桃app| 欧美最猛性xxxxx直播| 一区二区三区资源| 91久久国产最好的精华液| 亚洲欧美二区三区| 色综合久久综合网97色综合| 一区二区三区在线视频观看| 不卡欧美aaaaa| 亚洲欧美另类在线| 91麻豆国产在线观看| 亚洲一区二区综合| 欧美日韩高清一区二区不卡 | 欧美老人xxxx18| 日韩精品一级中文字幕精品视频免费观看 | 久久精品综合网| 国产东北露脸精品视频| 中文字幕在线播放不卡一区| 99视频精品全部免费在线| 亚洲欧美一区二区三区孕妇| 在线观看日韩国产| 日韩精品福利网| 久久亚洲综合av| 成人精品免费视频| 一区二区三区四区蜜桃| 欧美一区二区三区婷婷月色 | 婷婷开心激情综合| 精品电影一区二区| 91丝袜国产在线播放| 日本午夜精品视频在线观看| 精品国产91久久久久久久妲己 | 亚洲女同一区二区| 91精品国产综合久久国产大片| 韩日精品视频一区| 亚洲欧美日韩国产综合| 日韩一区二区三区av| av亚洲精华国产精华精| 青青青爽久久午夜综合久久午夜| 国产午夜三级一区二区三| 91黄视频在线观看| 国产综合色产在线精品| 一区二区三区毛片| 久久久久青草大香线综合精品| 色诱视频网站一区| 国产综合色精品一区二区三区| 亚洲日本一区二区三区| 精品少妇一区二区三区 | 日韩欧美一级片| 99精品热视频| 激情综合色播五月| 亚洲欧美日韩久久| 国产欧美精品一区二区三区四区 | 午夜精品福利久久久| 国产精品久久久久aaaa樱花| 欧美成人在线直播| 日本韩国一区二区| 成人免费视频视频在线观看免费| 三级久久三级久久久| 亚洲欧美二区三区| 国产精品色噜噜| 精品动漫一区二区三区在线观看| 日本精品视频一区二区三区| 丁香桃色午夜亚洲一区二区三区| 日本不卡1234视频| 亚洲一区二区美女| 亚洲人妖av一区二区| 精品美女一区二区三区| 欧美裸体一区二区三区| 在线观看亚洲a| 91小视频在线免费看| 成人免费毛片嘿嘿连载视频| 久久97超碰国产精品超碰| 免费成人在线观看| 日韩成人一级片| 亚洲成av人片在线观看无码| 亚洲蜜桃精久久久久久久| 国产精品嫩草99a| 中文字幕电影一区| 中日韩av电影| 欧美高清在线精品一区| 久久精品视频在线看| 久久久久国色av免费看影院| 欧美精品一区在线观看| 久久婷婷成人综合色| 久久嫩草精品久久久精品一| 精品三级在线看| 久久精品人人做人人综合| www久久精品| wwwwww.欧美系列| 久久美女艺术照精彩视频福利播放 | 欧美精彩视频一区二区三区| 国产色一区二区| 国产精品网站一区| 亚洲欧美综合网| 日韩美女啊v在线免费观看| 亚洲欧洲日本在线| 亚洲精品视频在线| 亚洲小说欧美激情另类| 日韩精品视频网站| 国内精品自线一区二区三区视频| 国产乱码一区二区三区| 粉嫩av一区二区三区| 99re在线视频这里只有精品| 日本道色综合久久| 欧美日本韩国一区| 久久夜色精品国产噜噜av| 国产精品久久久久久久浪潮网站 | 欧美精品在线视频| 精品成人一区二区| 日韩码欧中文字| 日本亚洲三级在线| 国产激情视频一区二区在线观看| bt欧美亚洲午夜电影天堂| 欧美色图12p| 精品福利视频一区二区三区| 亚洲欧美怡红院| 日本在线不卡一区| 成人激情图片网| 欧美理论在线播放| 中文字幕第一区第二区| 午夜精品一区二区三区免费视频| 韩日av一区二区| 91小视频免费观看| 日韩欧美激情在线| 亚洲同性同志一二三专区| 日日欢夜夜爽一区| 成人午夜视频网站| 欧美老女人在线| 成人欧美一区二区三区白人 | 久久久久久久久久久黄色| 亚洲精品欧美专区| 久久69国产一区二区蜜臀 | 成人精品小蝌蚪| 欧美一区二区三区在线看| 中文字幕成人av| 九九精品视频在线看| 欧美在线一区二区| 日本一区二区三级电影在线观看| 亚洲成人av一区| caoporm超碰国产精品| 精品国产成人系列| 亚洲chinese男男1069| 一本久道久久综合中文字幕| 久久久亚洲午夜电影| 青青草原综合久久大伊人精品优势| 一本到三区不卡视频| 欧美高清在线精品一区| 久久69国产一区二区蜜臀 | 欧美性猛交xxxxxxxx| 国产丝袜欧美中文另类| 蜜臀久久99精品久久久久久9| 欧美亚洲日本一区| 亚洲色图第一区| 国产高清不卡二三区| 精品少妇一区二区三区在线播放| 五月天亚洲婷婷| 欧美三级视频在线| 自拍偷拍亚洲综合| 成人av免费在线播放| 欧美激情在线观看视频免费| 国产精品亚洲综合一区在线观看| 精品少妇一区二区三区在线播放| 欧美aⅴ一区二区三区视频| 欧美日韩另类一区| 日韩精品每日更新| 欧美一级片免费看| 蜜桃av一区二区三区| 日韩写真欧美这视频| 免费xxxx性欧美18vr| 日韩欧美一级二级三级| 美女网站一区二区| 精品久久一区二区三区| 国产在线日韩欧美| 日本一区二区三区免费乱视频|