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

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

?? os_core.c

?? 我寫的 周立功的LPC2131的簡單的OS程序
?? 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()

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩美女天天操| 亚洲美女少妇撒尿| 日韩西西人体444www| 在线播放/欧美激情| 91精品国产综合久久久久久久久久| 色综合久久六月婷婷中文字幕| 99re热这里只有精品视频| av在线综合网| 欧美中文字幕一区| 6080午夜不卡| 欧美一级免费观看| 久久一日本道色综合| 亚洲国产激情av| 亚洲天堂精品视频| 亚洲成精国产精品女| 日韩电影在线一区二区| 国产呦精品一区二区三区网站| 国产一区二区在线观看视频| 成a人片国产精品| 欧美亚洲综合在线| 日韩美女一区二区三区四区| 国产人成亚洲第一网站在线播放 | 9i在线看片成人免费| 在线区一区二视频| 日韩一级大片在线| 国产人成一区二区三区影院| 亚洲精品中文字幕在线观看| 亚洲最大的成人av| 国内外成人在线| 91蝌蚪国产九色| 91精品国产综合久久久久久漫画| 久久久三级国产网站| 亚洲综合在线免费观看| 国内不卡的二区三区中文字幕| 99久久精品免费看国产免费软件| 欧美日韩一区二区欧美激情| 久久尤物电影视频在线观看| 亚洲一区在线免费观看| 国产一区在线精品| 欧美情侣在线播放| 国产精品不卡在线观看| 捆绑调教一区二区三区| 色婷婷综合中文久久一本| 日韩一区二区精品葵司在线| 日韩一区欧美小说| 国产精选一区二区三区| 777午夜精品免费视频| 中文字幕日韩一区二区| 久久成人免费网站| 欧美日韩电影一区| 亚洲女与黑人做爰| 高清av一区二区| 欧美成人综合网站| 亚洲香肠在线观看| 不卡一区二区在线| 久久精品欧美一区二区三区不卡| 亚洲一区二区三区影院| 97成人超碰视| 国产精品理论片在线观看| 日本精品一区二区三区四区的功能| 日韩一卡二卡三卡四卡| 日韩精品午夜视频| 欧美日韩三级视频| 夜夜嗨av一区二区三区中文字幕 | 成人免费一区二区三区视频| 韩国女主播成人在线观看| 欧美四级电影网| 亚洲午夜激情av| 欧美日韩国产区一| 亚洲成人精品一区| 欧美日韩在线播放一区| 亚洲国产人成综合网站| 欧美在线免费视屏| 亚洲综合图片区| 欧美军同video69gay| 秋霞午夜av一区二区三区| 欧美日韩1区2区| 肉色丝袜一区二区| 日韩午夜激情av| 国产在线国偷精品产拍免费yy| 精品国产91久久久久久久妲己| 美女诱惑一区二区| 久久久精品综合| 成人亚洲一区二区一| 中文字幕欧美一| 欧美综合一区二区| 欧美aaaaa成人免费观看视频| 日韩亚洲欧美在线| 懂色av一区二区三区免费观看 | 一本色道a无线码一区v| 亚洲精品一二三区| 欧美一区二区在线观看| 韩国av一区二区| 中文字幕在线观看一区| 欧美视频精品在线观看| 秋霞电影网一区二区| 国产亚洲精品久| 色狠狠色狠狠综合| 久久99精品一区二区三区 | av一区二区不卡| 亚洲高清一区二区三区| 久久蜜桃av一区精品变态类天堂| 高清在线不卡av| 亚洲gay无套男同| 26uuu色噜噜精品一区二区| av不卡免费在线观看| 日本一道高清亚洲日美韩| 国产亚洲精品超碰| 欧美午夜宅男影院| 东方aⅴ免费观看久久av| 亚洲在线成人精品| 国产女人18水真多18精品一级做| eeuss国产一区二区三区| 日韩高清不卡一区二区三区| 国产精品色在线| 欧美老年两性高潮| 99精品国产视频| 久久不见久久见免费视频7| 亚洲乱码中文字幕综合| 日韩精品一区二区三区蜜臀| 日本黄色一区二区| 成人综合激情网| 色香蕉成人二区免费| 国产在线视频一区二区三区| 亚洲国产精品久久一线不卡| 国产日韩欧美综合一区| 欧美一级搡bbbb搡bbbb| 在线欧美日韩精品| 高清成人在线观看| 国产裸体歌舞团一区二区| 日本vs亚洲vs韩国一区三区| 亚洲欧美国产三级| 国产精品高潮久久久久无| 欧美精品一区二区三区蜜臀| 欧美日韩免费高清一区色橹橹| 成人高清免费观看| 东方aⅴ免费观看久久av| 国产精品影视天天线| 精品亚洲免费视频| 久久国产日韩欧美精品| 手机精品视频在线观看| 亚洲激情在线播放| 一区二区三区精品在线观看| 日韩美女视频一区二区| 中文字幕久久午夜不卡| 亚洲国产精品t66y| 欧美激情一二三区| 国产精品久久久久久久蜜臀| 久久久不卡网国产精品二区| 精品日韩在线观看| 日韩免费在线观看| 久久综合中文字幕| 久久精品视频一区| 国产精品久久久久久久久晋中| 欧美极品美女视频| 亚洲男人的天堂在线观看| 一区二区三区在线观看欧美| 一区二区三区毛片| 丝袜美腿成人在线| 麻豆91在线看| 国产福利91精品| 成人国产亚洲欧美成人综合网| 成人av午夜影院| 日韩欧美国产一区二区三区| 欧美大尺度电影在线| 国产午夜精品一区二区三区视频| 国产色一区二区| 亚洲三级在线看| 婷婷成人综合网| 国产一区中文字幕| 色综合中文字幕| 欧美人与z0zoxxxx视频| 精品国产乱码久久久久久闺蜜| 久久久久久麻豆| 久久伊人中文字幕| 亚洲一区二区五区| 成人爽a毛片一区二区免费| 国产精品66部| 亚洲你懂的在线视频| 婷婷国产在线综合| 国产激情精品久久久第一区二区 | 最好看的中文字幕久久| 亚洲国产精品久久久久婷婷884| 亚洲chinese男男1069| 国产精品自产自拍| 91在线无精精品入口| 91精品国产福利| 亚洲欧美激情小说另类| 久久99精品视频| 欧美日韩国产系列| 国产精品女同一区二区三区| 五月天丁香久久| av网站一区二区三区| 日韩欧美中文字幕公布| 一区二区三区产品免费精品久久75| 久久99精品久久久久久国产越南 | 亚洲激情av在线| 日韩国产欧美在线视频| 成人av在线影院| 欧美va在线播放|