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

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

?? drvspi.i

?? cortex-m0 LCD1602程序
?? I
?? 第 1 頁 / 共 5 頁
字號:
 




 
typedef struct
{
    volatile uint32_t  WTR:1;
    volatile uint32_t  WTRE:1;
    volatile uint32_t  WTRF:1;
    volatile uint32_t  WTIF:1;
    volatile uint32_t  WTWKE:1;
    volatile uint32_t  WTWKF:1;
    volatile uint32_t  WTIE:1;
    volatile uint32_t  WTE:1;
    volatile uint32_t  WTIS:3;
    volatile const  uint32_t  RESERVE1:20;
    volatile uint32_t  DBGACK_WDT:1;
} WDT_WTCR_T;

typedef struct
{
    union {
        volatile uint32_t u32WTCR;
        struct {
            volatile uint32_t  WTR:1;
            volatile uint32_t  WTRE:1;
            volatile uint32_t  WTRF:1;
            volatile uint32_t  WTIF:1;
            volatile uint32_t  WTWKE:1;
            volatile uint32_t  WTWKF:1;
            volatile uint32_t  WTIE:1;
            volatile uint32_t  WTE:1;
            volatile uint32_t  WTIS:3;
            volatile const  uint32_t  RESERVE1:20;
            volatile uint32_t  DBGACK_WDT:1;
        } WTCR;
    };
} WDT_T;

 































 
typedef struct
{
    volatile uint32_t  GO_BUSY:1;
    volatile uint32_t  RX_NEG:1;
    volatile uint32_t  TX_NEG:1;
    volatile uint32_t  TX_BIT_LEN:5;
    volatile uint32_t  TX_NUM:2;
    volatile uint32_t  LSB:1;
    volatile uint32_t  CLKP:1;
    volatile uint32_t  SP_CYCLE:4;
    volatile uint32_t  IF:1;
    volatile uint32_t  IE:1;
    volatile uint32_t  SLAVE:1;
    volatile uint32_t  REORDER:2;
    volatile uint32_t  FIFO:1;
    volatile uint32_t  TWOB:1;
    volatile uint32_t  VARCLK_EN:1;
    volatile const  uint32_t  RX_EMPTY:1;
    volatile const  uint32_t  RX_FULL:1;
    volatile const  uint32_t  TX_EMPTY:1;
    volatile const  uint32_t  TX_FULL:1;
    volatile const  uint32_t  RESERVE:4;
} SPI_CNTRL_T;

typedef struct
{
    volatile uint32_t  DIVIDER:16;
    volatile uint32_t  DIVIDER2:16;
} SPI_DIVIDER_T;

typedef struct
{
    volatile uint32_t  SSR:2;
    volatile uint32_t  SS_LVL:1;
    volatile uint32_t  AUTOSS:1;
    volatile uint32_t  SS_LTRIG:1;
    volatile const  uint32_t  LTRIG_FLAG:1;
    volatile const  uint32_t  RESERVE:26;
} SPI_SSR_T;


typedef volatile const  uint32_t   SPI_RX_T;
typedef volatile  uint32_t   SPI_TX_T;
typedef volatile uint32_t   SPI_VARCLK_T;

typedef struct
{
    volatile uint32_t  TX_DMA_GO:1;
    volatile uint32_t  RX_DMA_GO:1;
    volatile const  uint32_t  RESERVE:30;
} SPI_DMA_T;

typedef struct
{
    volatile uint32_t  DIV_ONE:1;
    volatile const  uint32_t  RESERVE0:7;
    volatile uint32_t  NOSLVSEL:1;
    volatile uint32_t  SLV_ABORT:1;
    volatile uint32_t  SSTA_INTEN:1;
    volatile uint32_t  SLV_START_INTSTS:1;
    volatile const  uint32_t  RESERVE1:20;
} SPI_CNTRL2_T;

typedef struct
{
    volatile uint32_t  RX_CLR:1;
    volatile uint32_t  TX_CLR:1;
    volatile const  uint32_t  RESERVE0:30;
} SPI_FIFO_CTL_T;

typedef struct
{
    union {
        volatile uint32_t u32CNTRL;
        struct {
            volatile uint32_t  GO_BUSY:1;
            volatile uint32_t  RX_NEG:1;
            volatile uint32_t  TX_NEG:1;
            volatile uint32_t  TX_BIT_LEN:5;
            volatile uint32_t  TX_NUM:2;
            volatile uint32_t  LSB:1;
            volatile uint32_t  CLKP:1;
            volatile uint32_t  SP_CYCLE:4;
            volatile uint32_t  IF:1;
            volatile uint32_t  IE:1;
            volatile uint32_t  SLAVE:1;
            volatile uint32_t  REORDER:2;
            volatile uint32_t  FIFO:1;
            volatile uint32_t  TWOB:1;
            volatile uint32_t  VARCLK_EN:1;
            volatile const  uint32_t  RX_EMPTY:1;
            volatile const  uint32_t  RX_FULL:1;
            volatile const  uint32_t  TX_EMPTY:1;
            volatile const  uint32_t  TX_FULL:1;
            volatile const  uint32_t  RESERVE:4;
        } CNTRL;
    };

    union {
        volatile uint32_t u32DIVIDER;
        struct {
            volatile uint32_t  DIVIDER:16;
            volatile uint32_t  DIVIDER2:16;
        } DIVIDER;
    };

    union {
        volatile uint32_t u32SSR;
        struct {
            volatile uint32_t  SSR:2;
            volatile uint32_t  SS_LVL:1;
            volatile uint32_t  AUTOSS:1;
            volatile uint32_t  SS_LTRIG:1;
            volatile const  uint32_t  LTRIG_FLAG:1;
            volatile const  uint32_t  RESERVE:26;
        } SSR;
    };

    volatile const uint32_t RESERVE0;

    union {
        volatile const uint32_t u32RX[2];
        volatile const uint32_t RX[2];
    };

    volatile const uint32_t RESERVE1;
    volatile const uint32_t RESERVE2;

    union {
        volatile uint32_t u32TX[2];
        volatile uint32_t TX[2];
    };

    volatile const uint32_t RESERVE3;
    volatile const uint32_t RESERVE4;
    volatile const uint32_t RESERVE5;

    union {
        volatile uint32_t u32VARCLK;
        volatile uint32_t VARCLK;
    };

    union {
        volatile uint32_t u32DMA;
        struct {
            volatile uint32_t  TX_DMA_GO:1;
            volatile uint32_t  RX_DMA_GO:1;
            volatile const  uint32_t  RESERVE:30;
        } DMA;
    };

    union {
        volatile uint32_t u32CNTRL2;
        struct {
            volatile uint32_t  DIV_ONE:1;
            volatile const  uint32_t  RESERVE0:7;
            volatile uint32_t  NOSLVSEL:1;
            volatile uint32_t  SLV_ABORT:1;
            volatile uint32_t  SSTA_INTEN:1;
            volatile uint32_t  SLV_START_INTSTS:1;
            volatile const  uint32_t  RESERVE1:20;
        } CNTRL2;
    };

    union {
        volatile uint32_t u32FIFO_CTL;
        struct {
            volatile uint32_t  RX_CLR:1;
            volatile uint32_t  TX_CLR:1;
            volatile const  uint32_t  RESERVE0:30;
        } FIFO_CTL;
    };

} SPI_T;


 


























































 






 















 






 















 







 
typedef struct
{
    volatile const  uint32_t  RESERVE0:2;
    volatile uint32_t  AA:1;
    volatile uint32_t  SI:1;
    volatile uint32_t  STO:1;
    volatile uint32_t  STA:1;
    volatile uint32_t  ENS1:1;
    volatile uint32_t  EI:1;
    volatile const  uint32_t  RESERVE1:24;
} I2C_I2CON_T;

typedef struct
{
    volatile uint32_t  GC:1;
    volatile uint32_t  I2CADDR:7;
    volatile const  uint32_t  RESERVE:24;
} I2C_I2CADDR_T;

typedef volatile uint32_t I2C_I2CDAT_T;

typedef volatile const  uint32_t I2C_I2CSTATUS_T;

typedef volatile uint32_t I2C_I2CLK_T;

typedef struct
{
    volatile uint32_t  TIF:1;
    volatile uint32_t  DIV4:1;
    volatile uint32_t  ENTI:1;
    volatile const  uint32_t  RESERVE:29;
} I2C_I2CTOC_T;

typedef struct
{
    volatile const  uint32_t  RESERVE0:1;
    volatile uint32_t  I2CADM:7;
    volatile const  uint32_t  RESERVE1:24;
} I2C_I2CADM_T;

typedef struct
{
    union 
    {
        volatile uint32_t u32I2CON;
        
        struct 
        {
            volatile const  uint32_t  RESERVE0:2;
            volatile uint32_t  AA:1;
            volatile uint32_t  SI:1;
            volatile uint32_t  STO:1;
            volatile uint32_t  STA:1;
            volatile uint32_t  ENS1:1;
            volatile uint32_t  EI:1;
            volatile const  uint32_t  RESERVE1:24;
        } I2CON;
    };

    union 
    {
        volatile uint32_t u32I2CADDR0;
        
        struct 
        {
            volatile uint32_t  GC:1;
            volatile uint32_t  I2CADDR:7;
            volatile const  uint32_t  RESERVE:24;
        } I2CADDR0;
    };

    union 
    {
        volatile uint32_t u32I2CDAT;
        volatile uint32_t I2CDAT;
    };

    union 
    {
        volatile const uint32_t u32I2CSTATUS;
        volatile const uint32_t I2CSTATUS;
    };
    
    union 
    {
        volatile uint32_t u32I2CLK;
        volatile uint32_t I2CLK;
    };

    union 
    {
        volatile uint32_t u32I2CTOC;
        
        struct 
        {
            volatile uint32_t  TIF:1;
            volatile uint32_t  DIV4:1;
            volatile uint32_t  ENTI:1;
            volatile const  uint32_t  RESERVE:29;
        } I2CTOC;
    };

    union 
    {
        volatile uint32_t u32I2CADDR1;
        
        struct 
        {
            volatile uint32_t  GC:1;
            volatile uint32_t  I2CADDR:7;
            volatile const  uint32_t  RESERVE:24;
        } I2CADDR1;
    };
    
    union 
    {
        volatile uint32_t u32I2CADDR2;
        
        struct 
        {
            volatile uint32_t  GC:1;
            volatile uint32_t  I2CADDR:7;
            volatile const  uint32_t  RESERVE:24;
        } I2CADDR2;
    };    
    
    union 
    {
        volatile uint32_t u32I2CADDR3;
        
        struct 
        {
            volatile uint32_t  GC:1;
            volatile uint32_t  I2CADDR:7;
            volatile const  uint32_t  RESERVE:24;
        } I2CADDR3;
    }; 
    
    union 
    {
        volatile uint32_t u32I2CADM0;
        
        struct 
        {
            volatile const  uint32_t  RESERVE0:1;
            volatile uint32_t  I2CADM:7;
            volatile const  uint32_t  RESERVE1:24;
        } I2CADM0;
    };     
    
    union 
    {
        volatile uint32_t u32I2CADM1;
        
        struct 
        {
            volatile const  uint32_t  RESERVE0:1;
            volatile uint32_t  I2CADM:7;
            volatile const  uint32_t  RESERVE1:24;
        } I2CADM1;
    };

    union 
    {
        volatile uint32_t u32I2CADM2;
        
        struct 
        {
            volatile const  uint32_t  RESERVE0:1;
            volatile uint32_t  I2CADM:7;
            volatile const  uint32_t  RESERVE1:24;
        } I2CADM2;
    };
       
    union 
    {
        volatile uint32_t u32I2CADM3;
        
        struct 
        {
            volatile const  uint32_t  RESERVE0:1;
            volatile uint32_t  I2CADM:7;
            volatile const  uint32_t  RESERVE1:24;
        } I2CADM3;
    };       
} I2C_T;

 


















 






 



 



 



 









 




 
typedef volatile uint32_t RTC_INIR_T;

typedef struct
{
    volatile uint32_t  AER:16;
    volatile const  uint32_t  ENF:1;
    volatile const  uint32_t  RESERVE1:15;
} RTC_AER_T;

typedef struct
{
    volatile uint32_t  FRACTION:6;
    volatile const  uint32_t  RESERVE0:2;
    volatile uint32_t  INTEGER:4;
    volatile const  uint32_t  RESERVE1:20;
} RTC_FCR_T;

typedef struct
{
    volatile uint32_t  SEC1:4;
    volatile uint32_t  SEC10:3;
    volatile const  uint32_t  RESERVE0:1;
    volatile uint32_t  MIN1:4;
    volatile uint32_t  MIN10:3;
    volatile const  uint32_t  RESERVE1:1;
    volatile uint32_t  HR1:4;
    volatile uint32_t  HR10:2;
    volatile const  uint32_t  RESERVE2:10;
} RTC_TLR_T;

typedef struct
{
    volatile uint32_t  DAY1:4;
    volatile uint32_t  DAY10:2;
    volatile const  uint32_t  RESERVE0:2;
    volatile uint32_t  MON1:4;
    volatile uint32_t  MON10:1;
    volatile const  uint32_t  RESERVE1:3;
    volatile uint32_t  YEAR1:4;
    volatile uint32_t  YEAR10:4;
    volatile const  uint32_t  RESERVE2:8;
} RTC_CLR_T;

typedef struct
{
    volatile uint32_t  HR24_HR12:1;
    volatile const  uint32_t  RESERVE:31;
} RTC_TSSR_T;

typedef struct
{
    volatile uint32_t  DWR:3;
    volatile const  uint32_t  RESERVE:29;
} RTC_DWR_T;

typedef RTC_TLR_T   RTC_TAR_T;

typedef RTC_CLR_T   RTC_CAR_T;

typedef struct
{
    volatile uint32_t  LIR:1;
    volatile const  uint32_t  RESERVE:31;
} RTC_LIR_T;

typedef struct
{
    volatile uint32_t  AIER:1;
    volatile uint32_t  TIER:1;
    volatile const  uint32_t  RESERVE:30;
} RTC_RIER_T;

typedef struct
{
    volatile uint32_t  AIF:1;
    volatile uint32_t  TIF:1;
    volatile const  uint32_t  RESERVE:30;
} RTC_RIIR_T;

typedef struct
{
    volatile uint32_t  TTR:3;
    volatile uint32_t  TWKE:1;
    volatile const  uint32_t  RESERVE:28;
} RTC_TTR_T;

typedef struct
{
    union {
        volatile uint32_t u32INIR;
        volatile uint32_t INIR;
    };

    union {
        volatile uint32_t u32AER;
        struct {
            volatile uint32_t  AER:16;
            volatile const  uint32_t  ENF:1;
            volatile const  uint32_t  RESERVE1:15;
        } AER;
    };

    union {
        volatile uint32_t u32FCR;
        struct {
            volatile uint32_t  FRACTION:6;
            volatile const  uint32_t  RESERVE0:2;
            volatile uint32_t  INTEGER:4;
            volatile const  uint32_t  RESERVE1:20;
        } FCR;
    };

    union {
        volatile uint32_t u32TLR;
        struct {
            volatile uint32_t  SEC1:4;
            volatile uint32_t  SEC10:3;
            volatile const  uint32_t  RESERVE0:1;
            volatile uint32_t  MIN1:4;
            volatile uint32_t  MIN10:3;
            volatile const  uint32_t  RESERVE1:1;
            volatile uint32_t  HR1:4;
            volatile uint32_t  HR10:2;
            volatile const  uint32_t  RESERVE2:10;
        } TLR;
    };

    union {
        volatile uint32_t u32CLR;
        struct {
            volatile uint32_t  DAY1:4;
            volatile uint32_t  DAY10:2;
            volatile const  uint32_t  RESERVE0:2;
            volatile uint32_t  MON1:4;
            volatile uint32_t  MON10:1;
            volatile const  uint32_t  RESERVE1:3;
            volatile uint32_t  YEAR1:4;
            volatile uint32_t  YEAR10:4;
            volatile const  uint32_t  RESERVE2:8;
        } CLR;
    };

    union {
        volatile uint32_t u32TSSR;
        struct {
            volatile uint32_t  HR24_HR12:1;
            volatile const  uint32_t  RESERVE:31;
        } TSSR;
    };

    union {
        volatile uint32_t u32DWR;
        struct {
            volatile uint32_t  DWR:3;
            volatile const  uint32_t  RESERVE:29;
        } DWR;
    };

    union {
        volatile uint32_t u32TAR;
        struct {
            volatile uint32_t  SEC1:4;
            volatile uint32_t  SEC10:3;
            volatile const  uint32_t  RESERVE0:1;
            volatile uint32_t  MIN1:4;
            volatile uint32_t  MIN10:3;
            volatile const  uint32_t  RESERVE1:1;
            volatile uint32_t  HR1:4;
            volatile uint32_t  HR10:2;
            volatile const  uint32_t  RESERVE2:10;
        } TAR;
    };

    union {
        volatile uint32_t u32CAR;
        struct {
            volatile uint32_t  DAY1:4;
            volatile uint32_t  DAY10:2;
            volatile const  uint32_t  RESERVE0:2;
            volatile uint32_t  MON1:4;
            volatile uint32_t  MON10:1;
            volatile const  uint32_t  RESERVE1:3;
            volatile uint32_t  YEAR1:4;
            volatile uint32_t  YEAR10:4;
            volatile const  uint32_t  RESERVE2:8;
        } CAR;
    };

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
三级欧美在线一区| 欧美r级电影在线观看| 国产精品视频免费| 国产在线精品一区在线观看麻豆| 欧美肥妇free| 亚洲sss视频在线视频| 在线亚洲+欧美+日本专区| 日韩精品一区二区三区三区免费| 亚洲bdsm女犯bdsm网站| 欧美精品亚洲二区| 日韩电影免费一区| 欧美一区二区三区成人| 亚洲h在线观看| 日韩精品一区二区三区在线观看| 男人操女人的视频在线观看欧美 | 91在线视频18| 国产精品日韩精品欧美在线| 欧美主播一区二区三区| 亚洲成人av电影在线| 在线国产电影不卡| 亚洲午夜久久久久久久久久久| 欧美一区日韩一区| 久久精品国产精品亚洲红杏| 欧美精品一区二区三区久久久| 三级在线观看一区二区| 日韩欧美国产不卡| 国产一区美女在线| 亚洲日本韩国一区| 91精品欧美一区二区三区综合在 | 白白色亚洲国产精品| 亚洲欧美日韩系列| 欧美丰满少妇xxxxx高潮对白| 韩国欧美国产一区| 国产精品久久久久久久久免费樱桃 | 国产裸体歌舞团一区二区| 国产日产欧产精品推荐色| 91蝌蚪porny成人天涯| 久久精品国产99久久6| 国产三级精品在线| 在线视频综合导航| 日韩av一区二区在线影视| 国产精品三级在线观看| 欧美三级中文字幕在线观看| 蜜桃av一区二区在线观看| 99久久综合99久久综合网站| 奇米精品一区二区三区在线观看 | 日韩欧美精品在线视频| 加勒比av一区二区| 亚洲人成亚洲人成在线观看图片| 欧美高清激情brazzers| 久久国产麻豆精品| 亚洲高清不卡在线观看| 精品国产污网站| 色一情一乱一乱一91av| 懂色av一区二区在线播放| 亚洲一二三四久久| 久久精品欧美日韩精品| 欧美日韩激情一区| 91成人在线精品| 国产精品538一区二区在线| 亚洲一二三四在线观看| 精品国产99国产精品| 欧美丰满高潮xxxx喷水动漫| 99久久er热在这里只有精品15 | 欧美一区二区日韩| 99精品久久99久久久久| 亚洲福利视频一区| 一区二区激情小说| 日本一区二区成人在线| 日韩一级视频免费观看在线| www.久久精品| 国产麻豆精品久久一二三| 亚洲成人免费视| 亚洲视频一区二区在线| 国产精品电影一区二区| 久久综合久久99| 老鸭窝一区二区久久精品| 午夜国产精品影院在线观看| 中文字幕精品一区| 欧美成人福利视频| 欧美日韩国产首页在线观看| 色综合久久中文字幕| 成年人午夜久久久| 国内精品视频666| 久久99精品国产麻豆婷婷| 丝袜美腿亚洲色图| 一区二区不卡在线视频 午夜欧美不卡在| 国产精品视频在线看| 国产日产欧美一区| 国产亚洲一区二区三区在线观看| 日韩亚洲欧美一区二区三区| 日韩欧美中文字幕制服| 91精品免费观看| 宅男噜噜噜66一区二区66| 欧美久久久久久久久中文字幕| 色狠狠一区二区| 在线观看视频一区| 精品视频资源站| 日韩欧美中文字幕制服| 日韩手机在线导航| 日韩一区二区电影| 欧美日韩国产在线观看| 日韩欧美国产一区二区在线播放| 欧美一区国产二区| 精品国产成人系列| 久久精品一区四区| 国产精品成人在线观看| 综合久久给合久久狠狠狠97色| 日本一区二区成人在线| 综合激情网...| 亚洲国产日韩av| 日韩在线a电影| 国产v日产∨综合v精品视频| 成人黄色软件下载| 一本色道久久综合亚洲精品按摩| 欧美揉bbbbb揉bbbbb| 欧美一区二区三区影视| 久久久久久久久久久久久久久99| 久久精品人人做人人爽97| 亚洲一区二区精品久久av| 免费黄网站欧美| 国产盗摄视频一区二区三区| 99在线热播精品免费| 欧美视频在线一区二区三区| 91麻豆精品久久久久蜜臀| 亚洲精品一区二区三区影院| 国产精品国产三级国产a| 一区二区三区四区精品在线视频 | 欧美不卡123| 国产偷国产偷精品高清尤物 | 亚洲一卡二卡三卡四卡五卡| 日本麻豆一区二区三区视频| 亚洲天堂免费看| 国产在线一区二区综合免费视频| 处破女av一区二区| 日本久久电影网| 91首页免费视频| 国产亲近乱来精品视频| 亚洲黄色在线视频| 美腿丝袜亚洲一区| 91九色02白丝porn| 久久亚洲欧美国产精品乐播| 亚洲女厕所小便bbb| 亚洲一二三四区| 91丨porny丨最新| 日韩一级成人av| 一区二区三区在线观看网站| 韩日av一区二区| 欧美男同性恋视频网站| 2019国产精品| 2024国产精品视频| 免费成人在线播放| 欧美一区二区视频在线观看2020| 亚洲欧美另类小说| bt7086福利一区国产| 欧美国产乱子伦| 国产精品99久久久久久久女警| 日韩欧美你懂的| 老司机免费视频一区二区 | 一区二区高清视频在线观看| 不卡欧美aaaaa| 国产精品久久久久久亚洲毛片 | 日本aⅴ亚洲精品中文乱码| 在线观看91精品国产入口| 中文字幕制服丝袜成人av| 成人黄色小视频在线观看| 国产精品色哟哟网站| a美女胸又www黄视频久久| 国产精品网站一区| 99久久精品国产导航| 亚洲另类在线制服丝袜| 91女厕偷拍女厕偷拍高清| 亚洲品质自拍视频| 色av成人天堂桃色av| 亚洲综合激情另类小说区| 欧美中文字幕一区| 国产成人免费视频网站| 国产偷国产偷精品高清尤物 | 99久久99久久综合| 亚洲欧美一区二区三区久本道91| 99国产精品久久久| 亚洲一二三四久久| 欧美一区二区人人喊爽| 激情综合网最新| 国产欧美1区2区3区| 99re成人在线| 婷婷国产v国产偷v亚洲高清| 欧美一区二区三区视频免费播放| 久久精品国产一区二区| 久久精品亚洲精品国产欧美kt∨| 成人黄色小视频在线观看| 一区二区三区国产精华| 日韩一级完整毛片| 国产91高潮流白浆在线麻豆| 亚洲免费视频成人| 日韩一区二区精品葵司在线 | 国产精品第一页第二页第三页| 色婷婷国产精品| 日本三级亚洲精品| 国产色婷婷亚洲99精品小说|