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

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

?? dsp281x_sysctrl.h

?? 事件管理器測試程序 事件管理器測試程序
?? H
字號:
//###########################################################################
//
// FILE:   DSP281x_SysCtrl.h
//
// TITLE:  DSP281x Device System Control Register Definitions.
//
//###########################################################################
//
//  Ver | dd mmm yyyy | Who  | Description of changes
// =====|=============|======|===============================================
//  1.00| 11 Sep 2003 | L.H. | Changes since previous version (v.58 Alpha)
//      |             |      | Added bit definitions for the PLLCR register,
//      |             |      | Low power mode LPMCR0 and LPMCR1 registers
//      |             |      | Corrected OTPWAIT bit field name in FOTPWAIT
//      |             |      | Changed SCIENCLKA to SCIAENCLK and SCIENCLKB to
//      |             |      |    SCIBENCLK to match documentation
//      |             |      | Removed bit definition for SCSR register.  This
//      |             |      |    register should only be written to using a
//      |             |      |    mask value else a read-modify-write will clear
//      |             |      |    the WDOVERRIDE bit. 
//###########################################################################

#ifndef DSP281x_SYS_CTRL_H
#define DSP281x_SYS_CTRL_H


#ifdef __cplusplus
extern "C" {
#endif


//---------------------------------------------------------------------------
// System Control Individual Register Bit Definitions:
//
// High speed peripheral clock register bit definitions:
struct HISPCP_BITS  {   // bits  description
   Uint16 HSPCLK:3;     // 2:0   Rate relative to SYSCLKOUT
   Uint16 rsvd1:13;     // 15:3  reserved
};

union HISPCP_REG {
   Uint16              all;
   struct HISPCP_BITS  bit;
};

// Low speed peripheral clock register bit definitions:
struct LOSPCP_BITS  {   // bits  description
   Uint16 LSPCLK:3;     // 2:0   Rate relative to SYSCLKOUT
   Uint16 rsvd1:13;     // 15:3  reserved
};

union LOSPCP_REG {
   Uint16              all;
   struct LOSPCP_BITS  bit;
};

// Peripheral clock control register bit definitions:
struct PCLKCR_BITS  {   // bits  description
   Uint16 EVAENCLK:1;   // 0     Enable high speed clk to EV-A
   Uint16 EVBENCLK:1;   // 1     Enable high speed clk to EV-B
   Uint16 rsvd1:1;      // 2 
   Uint16 ADCENCLK:1;   // 3     Enable high speed clk to ADC
   Uint16 rsvd2:4;      // 7:4   reserved
   Uint16 SPIENCLK:1;   // 8     Enable low speed clk to SPI
   Uint16 rsvd3:1;      // 9     reserved
   Uint16 SCIAENCLK:1;  // 10    Enable low speed clk to SCI-A
   Uint16 SCIBENCLK:1;  // 11    Enable low speed clk to SCI-B
   Uint16 MCBSPENCLK:1; // 12    Enable low speed clk to McBSP
   Uint16 rsvd4:1;      // 13    reserved
   Uint16 ECANENCLK:1;  // 14    Enable system clk to eCAN
};

union PCLKCR_REG {
   Uint16              all;
   struct PCLKCR_BITS  bit;
};   

// PLL control register bit definitions:
struct PLLCR_BITS {      // bits  description
   Uint16 DIV:4;         // 3:0   Set clock ratio for the PLL
   Uint16 rsvd1:12;      // 15:4  reserved
};

union PLLCR_REG {
   Uint16             all;
   struct PLLCR_BITS  bit;
};

// Low Power Mode 0 control register bit definitions:
struct LPMCR0_BITS {     // bits  description
   Uint16 LPM:2;         // 1:0   Set the low power mode
   Uint16 QUALSTDBY:6;   // 7:2   Qualification   
   Uint16 rsvd1:8;       // 15:8  reserved
};

union LPMCR0_REG {
   Uint16              all;
   struct LPMCR0_BITS  bit;
};

// Low Power Mode 1 control register bit definitions:
struct LPMCR1_BITS {     // bits  description
   Uint16 XINT1:1;       // 0     Enable XINT1 to wake the device from standby
   Uint16 XNMI:1;        // 1     Enable XMNI to wake the device from standby
   Uint16 WDINT:1;       // 2     Enable watchdog interrupt to wake the device from standby
   Uint16 T1CTRIP:1;     // 3     Enable T1CTRIP to wake the device from standby
   Uint16 T2CTRIP:1;     // 4     Enable T2CTRIP to wake the device from standby
   Uint16 T3CTRIP:1;     // 5     Enable T3CTRIP to wake the device from standby
   Uint16 T4CTRIP:1;     // 6     Enable T4CTRIP to wake the device from standby
   Uint16 C1TRIP:1;      // 7     Enable C1TRIP to wake the device from standby
   Uint16 C2TRIP:1;      // 8     Enable C2TRIP to wake the device from standby
   Uint16 C3TRIP:1;      // 9     Enable C3TRIP to wake the device from standby
   Uint16 C4TRIP:1;      // 10    Enable C4TRIP to wake the device from standby
   Uint16 C5TRIP:1;      // 11    Enable C5TRIP to wake the device from standby
   Uint16 C6TRIP:1;      // 12    Enable C6TRIP to wake the device from standby
   Uint16 SCIRXA:1;      // 13    Enable SCIRXA to wake the device from standby
   Uint16 SCIRXB:1;      // 14    Enable SCIRXB to wake the device from standby
   Uint16 CANRX:1;       // 15    Enable CANRX to wake the device from standby
};

union LPMCR1_REG {
   Uint16              all;
   struct LPMCR1_BITS  bit;
};

//---------------------------------------------------------------------------
// System Control Register File:
//
struct SYS_CTRL_REGS {
   Uint16  rsvd1[10];            // 0-9
   union   HISPCP_REG HISPCP;    // 10: High-speed peripheral clock pre-scaler
   union   LOSPCP_REG LOSPCP;    // 11: Low-speed peripheral clock pre-scaler
   union   PCLKCR_REG PCLKCR;    // 12: Peripheral clock control register
   Uint16             rsvd2;     // 13: reserved
   union   LPMCR0_REG LPMCR0;    // 14: Low-power mode control register 0
   union   LPMCR1_REG LPMCR1;    // 15: Low-power mode control register 1
   Uint16             rsvd3;     // 16: reserved
   union   PLLCR_REG  PLLCR;     // 17: PLL control register
   // No bit definitions are defined for SCSR because
   // a read-modify-write instruction can clear the WDOVERRIDE bit
   Uint16             SCSR;      // 18: System control and status register
   Uint16             WDCNTR;    // 19: WD counter register
   Uint16             rsvd4;     // 20
   Uint16             WDKEY;     // 21: WD reset key register
   Uint16             rsvd5[3];  // 22-24
   // No bit definitions are defined for WDCR because
   // the proper value must be written to the WDCHK field
   // whenever writing to this register. 
   Uint16             WDCR;      // 25: WD timer control register
   Uint16             rsvd6[6];  // 26-31
};


/* --------------------------------------------------- */
/* CSM Registers                                       */
/*                                                     */
/* ----------------------------------------------------*/

/* CSM Status & Control register bit definitions */
struct  CSMSCR_BITS {      // bit   description
   Uint16     SECURE:1;    // 0     Secure flag
   Uint16     rsvd1:14;    // 14-1  reserved
   Uint16     FORCESEC:1;  // 15    Force Secure control bit

}; 

/* Allow access to the bit fields or entire register */
union CSMSCR_REG {
   Uint16             all;
   struct CSMSCR_BITS bit;
};

/* CSM Register File */ 
struct  CSM_REGS {      
   Uint16           KEY0;    // KEY reg bits 15-0 
   Uint16           KEY1;    // KEY reg bits 31-16 
   Uint16           KEY2;    // KEY reg bits 47-32
   Uint16           KEY3;    // KEY reg bits 63-48
   Uint16           KEY4;    // KEY reg bits 79-64
   Uint16           KEY5;    // KEY reg bits 95-80
   Uint16           KEY6;    // KEY reg bits 111-96
   Uint16           KEY7;    // KEY reg bits 127-112
   Uint16           rsvd1;   // reserved
   Uint16           rsvd2;   // reserved
   Uint16           rsvd3;   // reserved
   Uint16           rsvd4;   // reserved
   Uint16           rsvd5;   // reserved
   Uint16           rsvd6;   // reserved
   Uint16           rsvd7;   // reserved 
   union CSMSCR_REG CSMSCR;  // CSM Status & Control register
};

/* Password locations */
struct  CSM_PWL {
   Uint16   PSWD0;  // PSWD bits 15-0
   Uint16   PSWD1;  // PSWD bits 31-16
   Uint16   PSWD2;  // PSWD bits 47-32
   Uint16   PSWD3;  // PSWD bits 63-48
   Uint16   PSWD4;  // PSWD bits 79-64
   Uint16   PSWD5;  // PSWD bits 95-80
   Uint16   PSWD6;  // PSWD bits 111-96
   Uint16   PSWD7;  // PSWD bits 127-112
};



/* Flash Registers */

#define FLASH_SLEEP   0x0000;
#define FLASH_STANDBY 0x0001;
#define FLASH_ACTIVE  0x0003;


/* Flash Option Register bit definitions */
struct  FOPT_BITS {       // bit   description
   Uint16     ENPIPE:1;   // 0     Enable Pipeline Mode
   Uint16     rsvd:15;    // 1-15  reserved
};

/* Allow access to the bit fields or entire register */
union FOPT_REG {
   Uint16           all;
   struct FOPT_BITS bit;
};

/* Flash Power Modes Register bit definitions */
struct  FPWR_BITS {       // bit   description
   Uint16     PWR:2;      // 0-1   Power Mode bits
   Uint16     rsvd:14;    // 2-15  reserved
};

/* Allow access to the bit fields or entire register */
union FPWR_REG {
   Uint16           all;
   struct FPWR_BITS bit;
};


/* Flash Status Register bit definitions */
struct  FSTATUS_BITS {       // bit   description
   Uint16     PWRS:2;        // 0-1   Power Mode Status bits
   Uint16     STDBYWAITS:1;  // 2     Bank/Pump Sleep to Standby Wait Counter Status bits
   Uint16     ACTIVEWAITS:1; // 3     Bank/Pump Standby to Active Wait Counter Status bits
   Uint16     rsvd1:4;       // 4-7   reserved
   Uint16     V3STAT:1;      // 8     VDD3V Status Latch bit
   Uint16     rsvd2:7;       // 9-15  reserved
};

/* Allow access to the bit fields or entire register */
union FSTATUS_REG {
   Uint16              all;
   struct FSTATUS_BITS bit;
};

/* Flash Sleep to Standby Wait Counter Register bit definitions */
struct  FSTDBYWAIT_BITS {    // bit   description
   Uint16     STDBYWAIT:8;   // 0-7   Bank/Pump Sleep to Standby Wait Count bits
   Uint16     rsvd:8;        // 8-15  reserved
};

/* Allow access to the bit fields or entire register */
union FSTDBYWAIT_REG {
   Uint16                 all;
   struct FSTDBYWAIT_BITS bit;
};

/* Flash Standby to Active Wait Counter Register bit definitions */
struct  FACTIVEWAIT_BITS {   // bit   description
   Uint16     ACTIVEWAIT:8;  // 0-7   Bank/Pump Standby to Active Wait Count bits
   Uint16     rsvd:8;        // 8-15  reserved
};

/* Allow access to the bit fields or entire register */
union FACTIVEWAIT_REG {
   Uint16                  all;
   struct FACTIVEWAIT_BITS bit;
};

/* Bank Read Access Wait State Register bit definitions */
struct  FBANKWAIT_BITS {     // bit   description
   Uint16     RANDWAIT:4;    // 0-3   Flash Random Read Wait State bits
   Uint16     rsvd1:4;       // 4-7   reserved
   Uint16     PAGEWAIT:4;    // 8-11  Flash Paged Read Wait State bits
   Uint16     rsvd2:4;       // 12-15 reserved
};

/* Allow access to the bit fields or entire register */
union FBANKWAIT_REG {
   Uint16                all;
   struct FBANKWAIT_BITS bit;
};

/* OTP Read Access Wait State Register bit definitions */
struct  FOTPWAIT_BITS {      // bit   description
   Uint16     OTPWAIT:5;     // 0-4   OTP Read Wait State bits
   Uint16     rsvd:11;       // 5-15  reserved
};

/* Allow access to the bit fields or entire register */
union FOTPWAIT_REG {
   Uint16               all;
   struct FOTPWAIT_BITS bit;
};


struct FLASH_REGS {
   union FOPT_REG        FOPT;        // Option Register
   Uint16                rsvd1;       // reserved
   union FPWR_REG        FPWR;        // Power Modes Register
   union FSTATUS_REG     FSTATUS;     // Status Register
   union FSTDBYWAIT_REG  FSTDBYWAIT;  // Pump/Bank Sleep to Standby Wait State Register
   union FACTIVEWAIT_REG FACTIVEWAIT; // Pump/Bank Standby to Active Wait State Register
   union FBANKWAIT_REG   FBANKWAIT;   // Bank Read Access Wait State Register
   union FOTPWAIT_REG    FOTPWAIT;    // OTP Read Access Wait State Register
};

//---------------------------------------------------------------------------
// System Control External References & Function Declarations:
//
extern volatile struct SYS_CTRL_REGS SysCtrlRegs;
extern volatile struct CSM_REGS CsmRegs;
extern volatile struct CSM_PWL CsmPwl;
extern volatile struct FLASH_REGS FlashRegs;


#ifdef __cplusplus
}
#endif /* extern "C" */

#endif  // end of DSP281x_SYS_CTRL_H definition

//===========================================================================
// No more.
//===========================================================================

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲裸体在线观看| 色婷婷亚洲婷婷| 3d动漫精品啪啪1区2区免费| 中文字幕制服丝袜一区二区三区 | 视频在线观看一区| 91成人在线观看喷潮| 亚洲资源在线观看| 7777精品伊人久久久大香线蕉完整版 | 欧美第一区第二区| 黄色成人免费在线| 中文字幕精品一区| 色婷婷av一区| 日本欧美肥老太交大片| 久久色在线视频| 成a人片国产精品| 亚洲精品一二三| 欧美丰满一区二区免费视频| 久久99久久久欧美国产| 亚洲国产精品传媒在线观看| 一本色道久久综合亚洲aⅴ蜜桃| 一区二区三区 在线观看视频| 欧美日韩国产乱码电影| 国产一区二区三区在线观看免费视频| 国产日产欧美精品一区二区三区| 日本精品裸体写真集在线观看| 日本欧美久久久久免费播放网| 日本一区二区免费在线| 欧美性色黄大片手机版| 激情五月激情综合网| 亚洲国产精品成人综合色在线婷婷| 一本色道久久综合精品竹菊| 免费欧美日韩国产三级电影| 国产精品家庭影院| 91精品国产综合久久香蕉麻豆| 高清视频一区二区| 午夜不卡av免费| 久久久久国产精品人| 国产福利91精品| 亚洲6080在线| 国产精品国产自产拍高清av | 乱一区二区av| 亚洲欧洲成人自拍| 欧美va亚洲va| 欧美艳星brazzers| 精品午夜一区二区三区在线观看 | 日韩精品免费专区| 精品美女在线观看| 欧美午夜片在线看| 国产高清视频一区| 日本美女一区二区| 亚洲免费在线观看| 日韩一区二区三区在线| 国产精品66部| 一区二区三区精品| 欧美高清精品3d| 国产乱淫av一区二区三区| 精品视频一区二区不卡| 日本免费在线视频不卡一不卡二| 制服视频三区第一页精品| 国产一区二区91| 美女视频黄频大全不卡视频在线播放| 亚洲免费观看高清| 国产精品九色蝌蚪自拍| 欧美激情一区三区| 久久婷婷久久一区二区三区| 欧美一区二区观看视频| 欧洲国内综合视频| 日本国产一区二区| 91女人视频在线观看| 成人avav在线| av中文字幕不卡| 成人黄页毛片网站| 成人国产视频在线观看| 国产成人精品aa毛片| 精品亚洲成a人在线观看| 精品一区二区三区欧美| 蜜臀国产一区二区三区在线播放| 丝袜美腿高跟呻吟高潮一区| 亚洲国产欧美一区二区三区丁香婷| 亚洲六月丁香色婷婷综合久久 | 中文字幕一区二区三区视频| 国产欧美视频在线观看| 国产午夜精品久久久久久久| 国产丝袜欧美中文另类| 国产精品网站在线观看| 亚洲欧洲成人自拍| 亚洲精品国产成人久久av盗摄| 亚洲免费观看高清| 九九精品视频在线看| 麻豆成人免费电影| 国产一区二区视频在线| 成人免费毛片高清视频| 99久久精品99国产精品 | 91久久线看在观草草青青| 色婷婷综合久久| 在线观看区一区二| 欧美另类z0zxhd电影| 欧美一区二区三区人| 精品国产不卡一区二区三区| 国产亚洲精品bt天堂精选| 国产精品欧美久久久久无广告| 中文字幕在线免费不卡| 亚洲美女免费视频| 亚洲超碰精品一区二区| 毛片基地黄久久久久久天堂| 精品一区二区三区欧美| 国产剧情一区在线| 一本色道久久加勒比精品| 成人福利电影精品一区二区在线观看| 色一情一乱一乱一91av| 91精品国产色综合久久ai换脸| 久久这里只有精品6| 亚洲欧美偷拍三级| 午夜久久久久久久久| 精品亚洲aⅴ乱码一区二区三区| 不卡在线视频中文字幕| 91精品国产品国语在线不卡 | 国产精品视频在线看| 一区二区三区鲁丝不卡| 毛片av一区二区| 91丨porny丨中文| 欧美电影精品一区二区| 自拍偷自拍亚洲精品播放| 日韩电影在线一区二区| 成人av免费在线观看| 欧美一区二区免费| 亚洲欧美经典视频| 精品一区二区三区免费毛片爱| 色婷婷狠狠综合| 久久丝袜美腿综合| 日韩激情视频在线观看| 成人av网站在线观看免费| 日韩一区二区三区在线视频| 亚洲精品成人精品456| 国产黄色精品网站| 欧美巨大另类极品videosbest | 亚洲九九爱视频| 国产在线一区二区| 欧美三级中文字幕在线观看| 中文在线一区二区| 精品午夜久久福利影院| 欧美体内she精高潮| 国产欧美日韩综合精品一区二区| 日韩影院免费视频| 91在线无精精品入口| 久久久久久99久久久精品网站| 日本亚洲天堂网| 欧美性生活久久| 亚洲伦理在线精品| 波多野结衣在线一区| 久久亚洲私人国产精品va媚药| 天天综合日日夜夜精品| 一本色道久久综合亚洲aⅴ蜜桃 | 久久国产精品免费| 欧美日韩久久久| 一区二区三区中文字幕在线观看| 高清不卡一二三区| 久久久精品天堂| 极品少妇xxxx精品少妇| 欧美日本高清视频在线观看| 亚洲免费av高清| 91麻豆国产在线观看| 国产精品理论片| 成人午夜碰碰视频| 国产精品色婷婷| 粉嫩欧美一区二区三区高清影视| 久久综合一区二区| 国内成人自拍视频| 久久综合丝袜日本网| 国产综合色产在线精品| 久久久久久久久97黄色工厂| 国产一区二区不卡| 久久久噜噜噜久久人人看 | 中文字幕一区二区三区不卡在线| 国产成人综合在线观看| 久久精品亚洲精品国产欧美kt∨ | 欧美成人精品3d动漫h| 石原莉奈一区二区三区在线观看| 在线免费不卡电影| 午夜欧美大尺度福利影院在线看| 在线免费观看一区| 亚洲高清视频中文字幕| 欧美亚洲国产怡红院影院| 亚洲一区二区精品久久av| 欧美性色综合网| 裸体在线国模精品偷拍| 久久午夜电影网| av激情综合网| 亚洲国产日韩一区二区| 日韩三级电影网址| 国内外成人在线| 亚洲天堂久久久久久久| 欧美日韩精品电影| 免费看黄色91| 国产日韩精品视频一区| 色欧美片视频在线观看在线视频| 五月婷婷欧美视频| 久久婷婷久久一区二区三区| 色综合久久综合中文综合网| 日韩电影在线免费|