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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? lib_ascii.h

?? 飛思卡爾HCS12的OS移植(ucosII),實(shí)現(xiàn)了三個(gè)任務(wù),IDE:CODEWARRIOR
?? H
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/*
*********************************************************************************************************
*                                               uC/LIB
*                                       CUSTOM LIBRARY MODULES
*
*                          (c) Copyright 2004-2007; Micrium, Inc.; Weston, FL
*
*               All rights reserved.  Protected by international copyright laws.
*
*               uC/LIB is provided in source form for FREE evaluation, for educational
*               use or peaceful research.  If you plan on using uC/LIB in a commercial
*               product you need to contact Micrium to properly license its use in your
*               product.  We provide ALL the source code for your convenience and to
*               help you experience uC/LIB.  The fact that the source code is provided
*               does NOT mean that you can use it without paying a licensing fee.
*
*               Knowledge of the source code may NOT be used to develop a similar product.
*
*               Please help us continue to provide the Embedded community with the finest
*               software available.  Your honesty is greatly appreciated.
*********************************************************************************************************
*/

/*
*********************************************************************************************************
*
*                                       ASCII CHARACTER DEFINITIONS
*
* Filename      : lib_ascii.h
* Version       : V1.25
* Programmer(s) : BAN
* Note(s)       : (1) ECMA-6 '7-Bit coded Character Set' (6th edition), which corresponds to the
*                     3rd edition of ISO 646, specifies several versions of a 7-bit character set :
*
*                     (a) THE GENERAL VERSION, which allows characters at 0x23 and 0x24 to be given
*                         a set alternate form and allows the characters 0x40, 0x5B, 0x5D, 0x60, 0x7B &
*                         0x7D to be assigned a "unique graphic character" or to be declared as unused.
*                         All other characters are explicitly specified.
*
*                     (b) THE INTERNATIONAL REFERENCE VERSION, which explicitly specifies all characters
*                         in the 7-bit character set.
*
*                     (c) NATIONAL & APPLICATION-ORIENTED VERSIONS, which may be derived from the
*                         standard in specified ways.
*
*                     The character set represented in this file reproduces the Internation Reference
*                     Version.  This is identical to the 7-bit character set which occupies Unicode
*                     characters 0x0000 through 0x007F.  The character names are taken from v5.0 of the
*                     Unicode specification, with certain abbreviations so that the resulting #define
*                     names will not violate ANSI C naming restriction :
*
*                     (a) For the Latin capital & lowercase letters, the name component 'LETTER_'
*                         is left out.
*********************************************************************************************************
* Note(s)       : (1) NO compiler-supplied standard library functions are used in library or product software.
*
*                     (a) ALL standard library functions are implemented in the custom library modules :
*
*                         (1) \<Custom Library Directory>\lib*.*
*
*                         (2) \<Custom Library Directory>\Ports\<cpu>\<compiler>\lib*_a.*
*
*                               where
*                                       <Custom Library Directory>      directory path for custom library software
*                                       <cpu>                           directory name for specific processor (CPU)
*                                       <compiler>                      directory name for specific compiler
*
*                     (b) Product-specific library functions are implemented in individual products.
*********************************************************************************************************
*/


/*$PAGE*/
/*
*********************************************************************************************************
*                                                 MODULE
*********************************************************************************************************
*/

#ifndef  LIB_ASCII_MODULE_PRESENT
#define  LIB_ASCII_MODULE_PRESENT


/*
*********************************************************************************************************
*                                            INCLUDE FILES
*
* Note(s) : (1) The following common software files are located in the following directories :
*
*               (a) \<Custom Library Directory>\lib*.*
*
*               (b) (1) \<CPU-Compiler Directory>\cpu_def.h
*
*                   (2) \<CPU-Compiler Directory>\<cpu>\<compiler>\cpu*.*
*
*                           where
*                                   <Custom Library Directory>      directory path for custom   library      software
*                                   <CPU-Compiler Directory>        directory path for common   CPU-compiler software
*                                   <cpu>                           directory name for specific processor (CPU)
*                                   <compiler>                      directory name for specific compiler
*
*           (2) Compiler MUST be configured to include the '\<Custom Library Directory>\uC-LIB\',
*               '\<CPU-Compiler Directory>\' directory, & the specific CPU-compiler directory as
*               additional include path directories.
*********************************************************************************************************
*/

#include  <cpu.h>
#include  <lib_def.h>


/*
*********************************************************************************************************
*                                               EXTERNS
*********************************************************************************************************
*/

#ifdef   LIB_ASCII_MODULE
#define  LIB_ASCII_EXT
#else
#define  LIB_ASCII_EXT  extern
#endif


/*$PAGE*/
/*
*********************************************************************************************************
*                                               DEFINES
*********************************************************************************************************
*/

/*
*********************************************************************************************************
*                                         ASCII CHARACTER DEFINES
*********************************************************************************************************
*/
                                                                /* -------------------- C0 CONTROLS ------------------- */
#define  ASCII_CHAR_NULL                                0x00    /* '\0'                                                 */
#define  ASCII_CHAR_NUL                                 ASCII_CHAR_NULL
#define  ASCII_CHAR_START_OF_HEADING                    0x01
#define  ASCII_CHAR_SOH                                 ASCII_CHAR_START_OF_HEADING
#define  ASCII_CHAR_START_OF_TEXT                       0x02
#define  ASCII_CHAR_STX                                 ASCII_CHAR_START_OF_TEXT
#define  ASCII_CHAR_END_OF_TEXT                         0x03
#define  ASCII_CHAR_ETX                                 ASCII_CHAR_END_OF_TEXT
#define  ASCII_CHAR_END_OF_TRANSMISSION                 0x04
#define  ASCII_CHAR_EOT                                 ASCII_CHAR_END_OF_TRANSMISSION
#define  ASCII_CHAR_ENQUIRY                             0x05
#define  ASCII_CHAR_ENQ                                 ASCII_CHAR_ENQUIRY
#define  ASCII_CHAR_ACKNOWLEDGE                         0x06
#define  ASCII_CHAR_ACK                                 ASCII_CHAR_ACKNOWLEDGE
#define  ASCII_CHAR_BELL                                0x07    /* '\a'                                                 */
#define  ASCII_CHAR_BEL                                 ASCII_CHAR_BELL
#define  ASCII_CHAR_BACKSPACE                           0x08    /* '\b'                                                 */
#define  ASCII_CHAR_BS                                  ASCII_CHAR_BACKSPACE
#define  ASCII_CHAR_CHARACTER_TABULATION                0x09    /* '\t'                                                 */
#define  ASCII_CHAR_HT                                  ASCII_CHAR_CHARACTER_TABULATION
#define  ASCII_CHAR_LINE_FEED                           0x0A    /* '\n'                                                 */
#define  ASCII_CHAR_LF                                  ASCII_CHAR_LINE_FEED
#define  ASCII_CHAR_LINE_TABULATION                     0x0B    /* '\v'                                                 */
#define  ASCII_CHAR_VT                                  ASCII_CHAR_LINE_TABULATION
#define  ASCII_CHAR_FORM_FEED                           0x0C    /* '\f'                                                 */
#define  ASCII_CHAR_FF                                  ASCII_CHAR_FORM_FEED
#define  ASCII_CHAR_CARRIAGE_RETURN                     0x0D    /* '\r'                                                 */
#define  ASCII_CHAR_CR                                  ASCII_CHAR_CARRIAGE_RETURN
#define  ASCII_CHAR_SHIFT_OUT                           0x0E
#define  ASCII_CHAR_SO                                  ASCII_CHAR_SHIFT_OUT
#define  ASCII_CHAR_SHIFT_IN                            0x0F
#define  ASCII_CHAR_SI                                  ASCII_CHAR_SHIFT_IN
#define  ASCII_CHAR_DATA_LINK_ESCAPE                    0x10
#define  ASCII_CHAR_DLE                                 ASCII_CHAR_DATA_LINK_ESCAPE
#define  ASCII_CHAR_DEVICE_CONTROL_ONE                  0x11
#define  ASCII_CHAR_DC1                                 ASCII_CHAR_DEVICE_CONTROL_ONE
#define  ASCII_CHAR_DEVICE_CONTROL_TWO                  0x12
#define  ASCII_CHAR_DC2                                 ASCII_CHAR_DEVICE_CONTROL_TWO
#define  ASCII_CHAR_DEVICE_CONTROL_THREE                0x13
#define  ASCII_CHAR_DC3                                 ASCII_CHAR_DEVICE_CONTROL_THREE
#define  ASCII_CHAR_DEVICE_CONTROL_FOUR                 0x14
#define  ASCII_CHAR_DC4                                 ASCII_CHAR_DEVICE_CONTROL_FOUR
#define  ASCII_CHAR_NEGATIVE_ACKNOWLEDGE                0x15
#define  ASCII_CHAR_NAK                                 ASCII_CHAR_NEGATIVE_ACKNOWLEDGE
#define  ASCII_CHAR_SYNCHRONOUS_IDLE                    0x16
#define  ASCII_CHAR_SYN                                 ASCII_CHAR_SYNCHRONOUS_IDLE
#define  ASCII_CHAR_END_OF_TRANSMISSION_BLOCK           0x17
#define  ASCII_CHAR_ETB                                 ASCII_CHAR_END_OF_TRANSMISSION_BLOCK
#define  ASCII_CHAR_CANCEL                              0x18
#define  ASCII_CHAR_CAN                                 ASCII_CHAR_CANCEL
#define  ASCII_CHAR_END_OF_MEDIUM                       0x19
#define  ASCII_CHAR_EM                                  ASCII_CHAR_END_OF_MEDIUM
#define  ASCII_CHAR_SUBSITUTE                           0x1A
#define  ASCII_CHAR_SUB                                 ASCII_CHAR_SUBSITUTE
#define  ASCII_CHAR_ESCAPE                              0x1B
#define  ASCII_CHAR_ESC                                 ASCII_CHAR_ESCAPE
#define  ASCII_CHAR_INFO_SEPARATOR_FOUR                 0x1C
#define  ASCII_CHAR_IS4                                 ASCII_CHAR_INFO_SEPARATOR_FOUR
#define  ASCII_CHAR_INFO_SEPARATOR_THREE                0x1D
#define  ASCII_CHAR_IS3                                 ASCII_CHAR_INFO_SEPARATOR_THREE
#define  ASCII_CHAR_INFO_SEPARATOR_TWO                  0x1E
#define  ASCII_CHAR_IS2                                 ASCII_CHAR_INFO_SEPARATOR_TWO
#define  ASCII_CHAR_INFO_SEPARATOR_ONE                  0x1F
#define  ASCII_CHAR_IS1                                 ASCII_CHAR_INFO_SEPARATOR_ONE

                                                                /* ------------ ASCII PUNCTUATION & SYMBOLS ----------- */
#define  ASCII_CHAR_SPACE                               0x20    /* ' '                                                  */
#define  ASCII_CHAR_EXCLAMATION_MARK                    0x21    /* '!'                                                  */
#define  ASCII_CHAR_QUOTATION_MARK                      0x22    /* '\"'                                                 */
#define  ASCII_CHAR_NUMBER_SIGN                         0x23    /* '#'                                                  */
#define  ASCII_CHAR_DOLLAR_SIGN                         0x24    /* '$'                                                  */
#define  ASCII_CHAR_PERCENTAGE_SIGN                     0x25    /* '%'                                                  */
#define  ASCII_CHAR_AMPERSAND                           0x26    /* '&'                                                  */
#define  ASCII_CHAR_APOSTROPHE                          0x27    /* '\''                                                 */
#define  ASCII_CHAR_LEFT_PARENTHESIS                    0x28    /* '('                                                  */
#define  ASCII_CHAR_RIGHT_PARENTHESIS                   0x29    /* ')'                                                  */
#define  ASCII_CHAR_ASTERISK                            0x2A    /* '*'                                                  */
#define  ASCII_CHAR_PLUS_SIGN                           0x2B    /* '+'                                                  */
#define  ASCII_CHAR_COMMA                               0x2C    /* ','                                                  */
#define  ASCII_CHAR_HYPHEN_MINUS                        0x2D    /* '-'                                                  */
#define  ASCII_CHAR_FULL_STOP                           0x2E    /* '.'                                                  */
#define  ASCII_CHAR_SOLIDUS                             0x2F    /* '/'                                                  */

                                                                /* ------------------- ASCII DIGITS ------------------- */
#define  ASCII_CHAR_DIGIT_ZERO                          0x30    /* '0'                                                  */
#define  ASCII_CHAR_DIGIT_ONE                           0x31    /* '1'                                                  */
#define  ASCII_CHAR_DIGIT_TWO                           0x32    /* '2'                                                  */
#define  ASCII_CHAR_DIGIT_THREE                         0x33    /* '3'                                                  */
#define  ASCII_CHAR_DIGIT_FOUR                          0x34    /* '4'                                                  */
#define  ASCII_CHAR_DIGIT_FIVE                          0x35    /* '5'                                                  */
#define  ASCII_CHAR_DIGIT_SIX                           0x36    /* '6'                                                  */
#define  ASCII_CHAR_DIGIT_SEVEN                         0x37    /* '7'                                                  */
#define  ASCII_CHAR_DIGIT_EIGHT                         0x38    /* '8'                                                  */
#define  ASCII_CHAR_DIGIT_NINE                          0x39    /* '9'                                                  */

                                                                /* ------------ ASCII PUNCTUATION & SYMBOLS ----------- */
#define  ASCII_CHAR_COLON                               0x3A    /* ':'                                                  */
#define  ASCII_CHAR_SEMICOLON                           0x3B    /* ';'                                                  */
#define  ASCII_CHAR_LESS_THAN_SIGN                      0x3C    /* '<'                                                  */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美—级在线免费片| 亚洲国产日韩综合久久精品| 欧美性猛交一区二区三区精品 | 亚洲自拍偷拍麻豆| 欧美成va人片在线观看| 日本久久电影网| 国产 日韩 欧美大片| 日韩电影一区二区三区| 亚洲手机成人高清视频| 久久久欧美精品sm网站| 欧美色图第一页| av激情成人网| 国产一区二区三区免费| 香蕉加勒比综合久久| 亚洲女同一区二区| 国产婷婷色一区二区三区| 欧美一级夜夜爽| 欧美伊人久久久久久久久影院 | 欧美日韩在线电影| 99re这里只有精品视频首页| 国产一区二三区好的| 免费成人结看片| 亚洲aⅴ怡春院| 亚洲资源在线观看| 亚洲黄一区二区三区| 国产精品电影院| 国产人久久人人人人爽| 亚洲精品一区二区三区99| 91精品国产一区二区| 欧美日韩视频专区在线播放| 在线视频亚洲一区| 91在线精品一区二区| av中文字幕一区| 粉嫩在线一区二区三区视频| 国产一区二区三区免费观看| 国内精品国产成人国产三级粉色 | 日韩欧美在线网站| 欧美一区二区三区四区高清| 欧美日韩成人在线| 欧美日韩一区久久| 欧美精品在欧美一区二区少妇| 欧美三级欧美一级| 欧美精品久久99久久在免费线| 欧美日韩一区二区三区免费看| 欧美网站一区二区| 欧美日本一区二区三区四区 | 国产欧美日韩卡一| 久久久久久久久99精品| 久久精品视频在线免费观看 | 日本aⅴ亚洲精品中文乱码| 视频在线在亚洲| 欧美aaa在线| 国产一区欧美一区| 丁香激情综合五月| 色综合久久综合网97色综合| 欧美主播一区二区三区| 欧美日韩国产首页| 日韩欧美国产一区在线观看| 26uuu国产一区二区三区| 久久精品人人做人人综合 | 中文字幕亚洲视频| 玉足女爽爽91| 日韩在线a电影| 久久国产剧场电影| 国产suv精品一区二区6| 99久久久久免费精品国产| 在线一区二区观看| 91精品黄色片免费大全| 2014亚洲片线观看视频免费| 国产精品麻豆网站| 亚洲成人自拍网| 久久99久久精品| 不卡av电影在线播放| 精品1区2区3区| 久久久久国产精品麻豆ai换脸| 国产精品理论片| 午夜欧美2019年伦理| 国产乱子轮精品视频| caoporn国产一区二区| 欧美三级在线看| 国产偷国产偷精品高清尤物| 一区二区三区精品| 精品午夜一区二区三区在线观看| av在线播放不卡| 欧美一级二级三级蜜桃| 中文文精品字幕一区二区| 亚洲国产cao| 福利一区福利二区| 欧美二区三区的天堂| 日本一区二区高清| 五月天网站亚洲| 成人免费不卡视频| 在线不卡一区二区| 成人免费在线观看入口| 久久99久国产精品黄毛片色诱| 一本到高清视频免费精品| 日韩精品一区二区三区swag| 亚洲精品国产精华液| 国产在线播放一区| 精品视频在线免费看| 国产精品麻豆欧美日韩ww| 麻豆国产欧美日韩综合精品二区 | 另类的小说在线视频另类成人小视频在线 | 国产欧美视频在线观看| 亚洲成av人**亚洲成av**| 成人蜜臀av电影| 精品国产免费一区二区三区香蕉| 亚洲国产一区二区在线播放| 成人av网站在线| 2020国产精品自拍| 天天色天天操综合| 色8久久精品久久久久久蜜| 国产精品天天看| 国产毛片一区二区| 日韩精品一区二区三区在线| 亚洲国产精品影院| 色综合天天性综合| 国产精品对白交换视频| 国产成人精品免费视频网站| 精品美女一区二区| 免费一级片91| 欧美一区在线视频| 五月婷婷色综合| 欧美性大战久久久| 一区二区三区日韩精品| 99久久99精品久久久久久| 国产精品每日更新| 国产成人亚洲综合a∨猫咪| 精品国产成人系列| 久久66热偷产精品| 日韩欧美一区中文| 免费在线视频一区| 91精品国产91久久久久久一区二区 | 日韩综合一区二区| 欧美伦理视频网站| 午夜激情久久久| 91麻豆精品国产自产在线观看一区| 一区2区3区在线看| 欧美天天综合网| 日韩精品福利网| 91精品国产欧美一区二区18| 男男视频亚洲欧美| 精品国产电影一区二区| 国产麻豆日韩欧美久久| 久久网站最新地址| 风间由美中文字幕在线看视频国产欧美 | 亚洲资源中文字幕| 欧美日韩国产天堂| 日韩高清一级片| 日韩手机在线导航| 免费在线观看一区二区三区| 日韩精品中文字幕在线不卡尤物 | 亚洲图片你懂的| 日本道精品一区二区三区| 亚洲高清一区二区三区| 欧美久久久久久蜜桃| 久久国产福利国产秒拍| 久久综合色婷婷| www.亚洲免费av| 一区二区三区在线看| 欧美福利视频导航| 国产精品小仙女| 国产精品理伦片| 欧美日韩的一区二区| 国内成人精品2018免费看| 中文字幕av在线一区二区三区| 色偷偷一区二区三区| 日韩成人免费看| 国产欧美日韩综合精品一区二区| 99精品久久只有精品| 亚洲精品v日韩精品| 欧美一级片在线观看| 国产米奇在线777精品观看| 中文字幕一区二区不卡| 欧美丰满嫩嫩电影| 东方aⅴ免费观看久久av| 亚洲精品日日夜夜| 欧美成人video| 色欲综合视频天天天| 日韩va欧美va亚洲va久久| 亚洲国产精品国自产拍av| 欧美精品一卡二卡| 成人av网站免费观看| 日本va欧美va精品发布| 国产精品久久免费看| 在线不卡欧美精品一区二区三区| 国产一区欧美一区| 午夜精品久久久久久久| 久久精品欧美日韩精品| 欧美丰满美乳xxx高潮www| 成av人片一区二区| 蜜臀91精品一区二区三区| 椎名由奈av一区二区三区| 日韩精品在线看片z| 色哟哟一区二区| 国产九色精品成人porny| 天堂资源在线中文精品| 亚洲男人的天堂网| 国产亚洲精品aa| 欧美一区二区免费|