1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef _SAML11_PM_INSTANCE_H_
- #define _SAML11_PM_INSTANCE_H_
- #if (defined(__ASSEMBLER__) || defined(__IAR_SYSTEMS_ASM__))
- #define REG_PM_SLEEPCFG (0x40000401)
- #define REG_PM_PLCFG (0x40000402)
- #define REG_PM_PWCFG (0x40000403)
- #define REG_PM_INTENCLR (0x40000404)
- #define REG_PM_INTENSET (0x40000405)
- #define REG_PM_INTFLAG (0x40000406)
- #define REG_PM_STDBYCFG (0x40000408)
- #else
- #define REG_PM_SLEEPCFG (*(__IO uint8_t*)0x40000401U)
- #define REG_PM_PLCFG (*(__IO uint8_t*)0x40000402U)
- #define REG_PM_PWCFG (*(__IO uint8_t*)0x40000403U)
- #define REG_PM_INTENCLR (*(__IO uint8_t*)0x40000404U)
- #define REG_PM_INTENSET (*(__IO uint8_t*)0x40000405U)
- #define REG_PM_INTFLAG (*(__IO uint8_t*)0x40000406U)
- #define REG_PM_STDBYCFG (*(__IO uint16_t*)0x40000408U)
- #endif
- #define PM_BIAS_RAM_HS 1
- #define PM_PD_NUM 1
- #define PM_INSTANCE_ID 1
- #endif
|