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

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

?? os_tmr.c

?? uCos_II到ARM7的移植
?? C
?? 第 1 頁 / 共 3 頁
字號:
/*
************************************************************************************************************************
*                                                      uC/OS-III
*                                                 The Real-Time Kernel
*
*                                     (c) Copyright 2005-2006, Micrium, Weston, FL
*                                                  All Rights Reserved
*
*                                                   TIMER MANAGEMENT
*
* File    : OS_TMR.C
* By      : Jean J. Labrosse
* Version : V2.83
************************************************************************************************************************
*/

#include <ucos_ii.h>

/*
************************************************************************************************************************
*                                                        NOTES
*
* 1) Your application MUST define the following #define constants:
*
*    OS_TASK_TMR_PRIO          The priority of the Timer management task
*    OS_TASK_TMR_STK_SIZE      The size     of the Timer management task's stack
*
* 2) You must call OSTmrSignal() to notify the Timer management task that it's time to update the timers.
************************************************************************************************************************
*/

/*
************************************************************************************************************************
*                                                     CONSTANTS
************************************************************************************************************************
*/

#define  OS_TMR_LINK_DLY       0
#define  OS_TMR_LINK_PERIODIC  1

/*
************************************************************************************************************************
*                                                  LOCAL PROTOTYPES
************************************************************************************************************************
*/

#if OS_TMR_EN > 0
static  OS_TMR  *OSTmr_Alloc         (void);
static  void     OSTmr_Free          (OS_TMR *ptmr);
static  void     OSTmr_InitTask      (void);
static  void     OSTmr_Link          (OS_TMR *ptmr, INT8U type);
static  void     OSTmr_Unlink        (OS_TMR *ptmr);
static  void     OSTmr_Lock          (void);
static  void     OSTmr_Unlock        (void);
static  void     OSTmr_Task          (void   *p_arg);
#endif

/*$PAGE*/
/*
************************************************************************************************************************
*                                                   CREATE A TIMER
*
* Description: This function is called by your application code to create a timer.
*
* Arguments  : dly           Initial delay.
*                            If the timer is configured for ONE-SHOT mode, this is the timeout used
*                            If the timer is configured for PERIODIC mode, this is the first timeout to wait for
*                               before the timer starts entering periodic mode
*
*              period        The 'period' being repeated for the timer.
*                               If you specified 'OS_TMR_OPT_PERIODIC' as an option, when the timer expires, it will
*                               automatically restart with the same period.
*
*              opt           Specifies either:
*                               OS_TMR_OPT_ONE_SHOT       The timer counts down only once
*                               OS_TMR_OPT_PERIODIC       The timer counts down and then reloads itself
*
*              callback      Is a pointer to a callback function that will be called when the timer expires.  The
*                               callback function must be declared as follows:
*
*                               void MyCallback (OS_TMR *ptmr, void *p_arg);
*
*              callback_arg  Is an argument (a pointer) that is passed to the callback function when it is called.
*
*              pname         Is a pointer to an ASCII string that is used to name the timer.  Names are useful for
*                               debugging.  The length of the ASCII string for the name can be as big as:
*
*                               OS_TMR_CFG_NAME_SIZE and should be found in OS_CFG.H
*
*              perr          Is a pointer to an error code.  '*perr' will contain one of the following:
*                               OS_NO_ERR
*                               OS_ERR_TMR_INVALID_DLY     you specified an invalid delay
*                               OS_ERR_TMR_INVALID_PERIOD  you specified an invalid period
*                               OS_ERR_TMR_INVALID_OPT     you specified an invalid option
*                               OS_ERR_TMR_ISR             if the call was made from an ISR
*                               OS_ERR_TMR_NON_AVAIL       if there are no free timers from the timer pool
*                               OS_ERR_TMR_NAME_TOO_LONG   if the timer name is too long to fit
*
* Returns    : A pointer to an OS_TMR data structure.  This is the 'handle' that you application will use to reference
*              the timer created/started.
************************************************************************************************************************
*/

#if OS_TMR_EN > 0
OS_TMR  *OSTmrCreate (INT32U           dly,
                      INT32U           period,
                      INT8U            opt,
                      OS_TMR_CALLBACK  callback,
                      void            *callback_arg,
                      INT8U           *pname,
                      INT8U           *perr)
{
    OS_TMR   *ptmr;
#if OS_TMR_CFG_NAME_SIZE > 0
    INT8U     len;
#endif


#if OS_ARG_CHK_EN > 0
    if (perr == (INT8U *)0) {                               /* Validate arguments                                     */
        return ((OS_TMR *)0);
    }
    switch (opt) {
        case OS_TMR_OPT_PERIODIC:
             if (period == 0) {
                 *perr = OS_ERR_TMR_INVALID_PERIOD;
                 return ((OS_TMR *)0);
             }
             break;

        case OS_TMR_OPT_ONE_SHOT:
             if (dly == 0) {
                 *perr = OS_ERR_TMR_INVALID_DLY;
                 return ((OS_TMR *)0);
             }
             break;

        default:
             *perr = OS_ERR_TMR_INVALID_OPT;
             return ((OS_TMR *)0);
    }
#endif
    if (OSIntNesting > 0) {                                 /* See if trying to call from an ISR                      */
        *perr  = OS_ERR_TMR_ISR;
        return ((OS_TMR *)0);
    }
    OSTmr_Lock();
    ptmr = OSTmr_Alloc();                                   /* Obtain a timer from the free pool                      */
    if (ptmr == (OS_TMR *)0) {
        OSTmr_Unlock();
        *perr = OS_ERR_TMR_NON_AVAIL;
        return ((OS_TMR *)0);
    }
    ptmr->OSTmrState       = OS_TMR_STATE_STOPPED;          /* Indicate that timer is not running yet                 */
    ptmr->OSTmrDly         = dly;
    ptmr->OSTmrPeriod      = period;
    ptmr->OSTmrOpt         = opt;
    ptmr->OSTmrCallback    = callback;
    ptmr->OSTmrCallbackArg = callback_arg;
#if OS_TMR_CFG_NAME_SIZE > 0
    if (pname !=(INT8U *)0) {
        len = OS_StrLen(pname);                             /* Copy timer name                                        */
        if (len < OS_TMR_CFG_NAME_SIZE) {
            (void)OS_StrCopy(ptmr->OSTmrName, pname);
        } else {
#if OS_TMR_CFG_NAME_SIZE > 1
            ptmr->OSTmrName[0] = '#';                       /* Invalid size specified                                 */
            ptmr->OSTmrName[1] = OS_ASCII_NUL;
#endif
            *perr              = OS_ERR_TMR_NAME_TOO_LONG;
            OSTmr_Unlock();
            return (ptmr);
        }
    }
#endif
    OSTmr_Unlock();
    *perr = OS_NO_ERR;
    return (ptmr);
}
#endif

/*$PAGE*/
/*
************************************************************************************************************************
*                                                   DELETE A TIMER
*
* Description: This function is called by your application code to delete a timer.
*
* Arguments  : ptmr          Is a pointer to the timer to stop and delete.
*
*              perr          Is a pointer to an error code.  '*perr' will contain one of the following:
*                               OS_NO_ERR
*                               OS_ERR_TMR_INVALID        'ptmr'  is a NULL pointer
*                               OS_ERR_TMR_INVALID_TYPE   'ptmr'  is not pointing to an OS_TMR
*                               OS_ERR_TMR_ISR            if the function was called from an ISR
*                               OS_ERR_TMR_INACTIVE       if the timer was not created
*                               OS_ERR_TMR_INVALID_STATE  the timer is in an invalid state
*
* Returns    : OS_TRUE       If the call was successful
*              OS_FALSE      If not
************************************************************************************************************************
*/

#if OS_TMR_EN > 0
BOOLEAN  OSTmrDel (OS_TMR  *ptmr,
                   INT8U   *perr)
{
#if OS_ARG_CHK_EN > 0
    if (perr == (INT8U *)0) {                               /* Validate arguments                                     */
        return (OS_FALSE);
    }
    if (ptmr == (OS_TMR *)0) {
        *perr = OS_ERR_TMR_INVALID;
        return (OS_FALSE);
    }
#endif
    if (ptmr->OSTmrType != OS_TMR_TYPE) {                   /* Validate timer structure                               */
        *perr = OS_ERR_TMR_INVALID_TYPE;
        return (OS_FALSE);
    }
    if (OSIntNesting > 0) {                                 /* See if trying to call from an ISR                      */
        *perr  = OS_ERR_TMR_ISR;
        return (OS_FALSE);
    }
    OSTmr_Lock();
    switch (ptmr->OSTmrState) {
        case OS_TMR_STATE_RUNNING:
             OSTmr_Unlink(ptmr);                            /* Remove from current wheel spoke                        */
             OSTmr_Free(ptmr);                              /* Return timer to free list of timers                    */
             OSTmr_Unlock();
             *perr = OS_NO_ERR;
             return (OS_TRUE);

        case OS_TMR_STATE_STOPPED:                          /* Timer has not started or ...                           */
        case OS_TMR_STATE_COMPLETED:                        /* ... timer has completed the ONE-SHOT time              */
             OSTmr_Free(ptmr);                              /* Return timer to free list of timers                    */
             OSTmr_Unlock();
             *perr = OS_NO_ERR;
             return (OS_TRUE);

        case OS_TMR_STATE_UNUSED:                           /* Already deleted                                        */
             OSTmr_Unlock();
             *perr = OS_ERR_TMR_INACTIVE;
             return (OS_FALSE);

        default:
             OSTmr_Unlock();
             *perr = OS_ERR_TMR_INVALID_STATE;
             return (OS_FALSE);
    }
}
#endif

/*$PAGE*/
/*
************************************************************************************************************************
*                                             GET THE NAME OF A TIMER
*
* Description: This function is called to obtain the name of a timer.
*
* Arguments  : ptmr          Is a pointer to the timer to obtain the name for
*
*              pdest         Is a pointer to where the name of the timer will be placed.  It is the caller's responsibility
*                            to ensure that he has sufficient storage in the destination, i.e. at least OS_TMR_CFG_NAME_SIZE
*
*              perr          Is a pointer to an error code.  '*perr' will contain one of the following:
*                               OS_NO_ERR                 The call was successful
*                               OS_ERR_TMR_INVALID_DEST   'pdest' is a NULL pointer
*                               OS_ERR_TMR_INVALID        'ptmr'  is a NULL pointer
*                               OS_ERR_TMR_INVALID_TYPE   'ptmr'  is not pointing to an OS_TMR
*                               OS_ERR_TMR_ISR            if the call was made from an ISR
*                               OS_ERR_TMR_INACTIVE       'ptmr'  points to a timer that is not active
*                               OS_ERR_TMR_INVALID_STATE  the timer is in an invalid state
*
* Returns    : The length of the string or 0 if the timer does not exist.
************************************************************************************************************************
*/

#if OS_TMR_EN > 0 && OS_TMR_CFG_NAME_SIZE > 0
INT8U  OSTmrNameGet (OS_TMR  *ptmr,
                     INT8U   *pdest,
                     INT8U   *perr)
{
    INT8U  len;


#if OS_ARG_CHK_EN > 0
    if (perr == (INT8U *)0) {
        return (0);
    }
    if (pdest == (INT8U *)0) {
        *perr = OS_ERR_TMR_INVALID_DEST;
        return (0);
    }
    if (ptmr == (OS_TMR *)0) {
        *perr = OS_ERR_TMR_INVALID;
        return (0);
    }
#endif
    if (ptmr->OSTmrType != OS_TMR_TYPE) {              /* Validate timer structure                                    */
        *perr = OS_ERR_TMR_INVALID_TYPE;
        return (0);
    }
    if (OSIntNesting > 0) {                            /* See if trying to call from an ISR                           */
        *perr  = OS_ERR_TMR_ISR;
        return (0);
    }
    OSTmr_Lock();
    switch (ptmr->OSTmrState) {
        case OS_TMR_STATE_RUNNING:
        case OS_TMR_STATE_STOPPED:
        case OS_TMR_STATE_COMPLETED:
             len   = OS_StrCopy(pdest, ptmr->OSTmrName);
             OSTmr_Unlock();
             *perr = OS_NO_ERR;
             return (len);

        case OS_TMR_STATE_UNUSED:                      /* Timer is not allocated                                      */
             OSTmr_Unlock();
             *perr = OS_ERR_TMR_INACTIVE;
             return (0);

        default:
             OSTmr_Unlock();
             *perr = OS_ERR_TMR_INVALID_STATE;
             return (0);
    }
}
#endif

/*$PAGE*/
/*
************************************************************************************************************************
*                                    GET HOW MUCH TIME IS LEFT BEFORE A TIMER EXPIRES
*
* Description: This function is called to get the number of ticks before a timer times out.
*
* Arguments  : ptmr          Is a pointer to the timer to obtain the remaining time from.
*
*              perr          Is a pointer to an error code.  '*perr' will contain one of the following:
*                               OS_NO_ERR
*                               OS_ERR_TMR_INVALID        'ptmr' is a NULL pointer
*                               OS_ERR_TMR_INVALID_TYPE   'ptmr'  is not pointing to an OS_TMR
*                               OS_ERR_TMR_ISR            if the call was made from an ISR
*                               OS_ERR_TMR_INACTIVE       'ptmr' points to a timer that is not active
*                               OS_ERR_TMR_INVALID_STATE  the timer is in an invalid state
*
* Returns    : The time remaining for the timer to expire.  The time represents 'timer' increments.  In other words, if
*              OSTmr_Task() is signaled every 1/10 of a second then the returned value represents the number of 1/10 of
*              a second remaining before the timer expires.
************************************************************************************************************************
*/

#if OS_TMR_EN > 0
INT32U  OSTmrRemainGet (OS_TMR  *ptmr,
                        INT8U   *perr)
{
    INT32U  remain;


#if OS_ARG_CHK_EN > 0
    if (perr == (INT8U *)0) {
        return (0);
    }
    if (ptmr == (OS_TMR *)0) {
        *perr = OS_ERR_TMR_INVALID;
        return (0);
    }
#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
jizzjizzjizz欧美| 五月天激情小说综合| 97久久人人超碰| 国产欧美精品区一区二区三区 | 蜜臀精品久久久久久蜜臀 | 国产欧美日韩在线视频| 高清久久久久久| 中文无字幕一区二区三区| 成人av资源网站| 一区二区在线观看免费| 欧美人伦禁忌dvd放荡欲情| 秋霞电影网一区二区| 精品av久久707| 成人h动漫精品一区二区| 亚洲欧美日韩在线播放| 欧美日韩精品一区二区三区蜜桃| 日本不卡一区二区三区| 久久嫩草精品久久久精品| 99久久99久久免费精品蜜臀| 亚洲影视在线播放| 日韩精品一区二区在线| 成人午夜在线播放| 午夜精品一区二区三区三上悠亚| 精品国产三级a在线观看| 国产69精品一区二区亚洲孕妇| 亚洲日穴在线视频| 在线播放视频一区| 国产成人午夜视频| 亚洲国产成人av| 久久综合久久综合九色| 色综合欧美在线视频区| 久久国产精品色| 亚洲免费av高清| 亚洲精品一区二区在线观看| 99精品视频一区二区三区| 日韩电影在线一区| 亚洲天堂av一区| 欧美成人精品福利| 在线精品视频免费观看| 精彩视频一区二区| 亚洲午夜精品网| 国产女人aaa级久久久级| 欧美绝品在线观看成人午夜影视| 成人精品视频一区| 日韩成人午夜电影| 亚洲精品水蜜桃| 亚洲国产激情av| 日韩精品中文字幕一区二区三区 | av不卡免费在线观看| 日韩精品一级中文字幕精品视频免费观看| 久久精品欧美日韩精品| 91麻豆精品国产无毒不卡在线观看| av福利精品导航| 欧美天天综合网| jizzjizzjizz欧美| 国产福利91精品一区| 久久精品久久综合| 天天综合天天做天天综合| 一区二区三区四区亚洲| 国产精品国产三级国产| 国产欧美1区2区3区| 欧美成人女星排行榜| 欧美一级生活片| 欧美日本一区二区三区| 欧美图区在线视频| 色www精品视频在线观看| 不卡一二三区首页| 大胆欧美人体老妇| 国产iv一区二区三区| 韩国中文字幕2020精品| 老汉av免费一区二区三区| 天天综合网天天综合色| 亚洲成人免费在线| 天天av天天翘天天综合网色鬼国产| 亚洲免费观看高清| 亚洲精品国产a久久久久久| 中文字幕一区二区不卡| 国产精品对白交换视频| 日韩毛片精品高清免费| 亚洲欧美日韩国产另类专区| 国产精品动漫网站| 亚洲码国产岛国毛片在线| 亚洲乱码国产乱码精品精小说 | 日韩精彩视频在线观看| 日韩av电影天堂| 另类中文字幕网| 国产美女娇喘av呻吟久久| 高清shemale亚洲人妖| 99久久婷婷国产精品综合| 91视频免费观看| 精品视频1区2区3区| 91麻豆精品国产91久久久资源速度| 欧美高清激情brazzers| 日韩一区二区高清| 久久九九99视频| 中文字幕在线一区| 亚洲免费在线观看| 天天综合网 天天综合色| 蜜臀av性久久久久蜜臀aⅴ四虎| 久久成人精品无人区| 夫妻av一区二区| 91福利资源站| 日韩精品中文字幕一区| 国产精品欧美久久久久无广告| 亚洲欧美日韩电影| 日本女优在线视频一区二区| 国产一区二区三区av电影| av一本久道久久综合久久鬼色| 欧美日韩卡一卡二| 久久久精品影视| 亚洲一区二区中文在线| 久久精品国产亚洲a| 99久久精品免费看国产免费软件| 国产欧美日韩精品a在线观看| 亚洲欧洲av色图| 丝袜诱惑制服诱惑色一区在线观看| 国产麻豆一精品一av一免费 | 5858s免费视频成人| 久久亚洲一区二区三区明星换脸| 国产精品久久久久久亚洲毛片 | 精品制服美女久久| 99久久er热在这里只有精品66| 4438x亚洲最大成人网| 国产亚洲污的网站| 天天影视色香欲综合网老头| 高清不卡一区二区在线| 欧美美女直播网站| 国产精品不卡在线观看| 麻豆成人久久精品二区三区红| 成人国产精品视频| 欧美一区二区三区白人| 亚洲欧美一区二区三区极速播放| 美女性感视频久久| 91丨porny丨国产入口| 久久一区二区视频| 午夜视频一区二区| 91天堂素人约啪| 国产亚洲美州欧州综合国| 亚洲福利视频一区| 99精品欧美一区| 久久影院视频免费| 美女免费视频一区| 欧美精品第1页| 亚洲一二三四在线| 91视视频在线观看入口直接观看www | 欧美三级在线视频| 国产精品午夜在线| 精品无人码麻豆乱码1区2区| 91精品国产综合久久香蕉的特点 | 欧美mv日韩mv国产| 日本中文字幕不卡| 欧美日韩久久久| 亚洲在线成人精品| 日本道在线观看一区二区| 中文字幕亚洲精品在线观看| 国产精品538一区二区在线| 日韩三级在线免费观看| 亚洲第四色夜色| 欧美在线观看视频在线| 一区二区三区欧美久久| 91亚洲精华国产精华精华液| 国产精品理论在线观看| 国产成人综合在线| 久久精品一区八戒影视| 国产剧情一区二区三区| 久久嫩草精品久久久精品一| 国内外精品视频| 26uuu亚洲综合色欧美| 国产又黄又大久久| 亚洲国产精品精华液网站| 色女孩综合影院| 亚洲精品久久久久久国产精华液| 91小视频在线观看| 亚洲欧美日韩综合aⅴ视频| 色综合 综合色| 一区二区三区四区亚洲| 欧美色爱综合网| 五月激情综合婷婷| 欧美一级艳片视频免费观看| 极品瑜伽女神91| 国产亚洲精品超碰| 波多野结衣的一区二区三区| 中文字幕五月欧美| 在线观看欧美精品| 亚洲 欧美综合在线网络| 3d成人动漫网站| 国产乱妇无码大片在线观看| 国产精品嫩草99a| 色综合久久久久网| 日韩精品久久久久久| 欧美精品一区二区三区很污很色的 | 国产精品综合视频| 成人免费在线观看入口| 欧美日韩亚洲国产综合| 久久精品二区亚洲w码| 国产亚洲午夜高清国产拍精品| av资源网一区| 首页国产欧美日韩丝袜| 精品久久久久久久久久久久久久久| 岛国av在线一区|