/** ****************************************************************************** * @file stm8l15x.h * @author MCD Application Team * @version V1.4.0 * @date 09/24/2010 * @brief This file contains all the peripheral register's definitions, bits * definitions and memory mapping for STM8L15x devices. ****************************************************************************** * @copy * * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. * *

© COPYRIGHT 2010 STMicroelectronics

*/ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM8L15x_H #define __STM8L15x_H /** @addtogroup STM8L15x_StdPeriph_Driver * @{ */ /* Uncomment the line below according to the target STM8L device used in your application */ /* #define STM8L15X_MD */ /*!< STM8L15X_MD: STM8L15x Medium density devices */ /* #define STM8L15X_MDP */ /*!< STM8L15X_MDP: STM8L15x Medium density plus devices */ /* #define STM8L15X_HD */ /*!< STM8L15X_HD: STM8L15x/16x High density devices */ /* Tip: To avoid modifying this file each time you need to switch between these devices, you can define the device in your toolchain compiler preprocessor. - Medium density STM8L15x devices are STM8L151C4, STM8L151C6, STM8L152C4, STM8L152C6, STM8L151K4, STM8L151K6, STM8L152K4, STM8L152K6, STM8L151G4, STM8L151G6, STM8L152G4 and STM8L152G6 microcontrollers where the Flash memory density ranges between 16 and 32 Kbytes. - Medium density Plus devices are STM8L151R6, STM8L152R6 microcontrollers where the Flash memory density is fixed and equal to 32 Kbytes and a wider range of peripheral than the medium density devices. - High density STM8L15x devices are STM8L151x8, STM8L152x8, STM8L162R8 and STM8L162M8 microcontrollers where the Flash memory density is fixed and equal to 64 Kbytes with the same peripheral set than Medium Density Plus devices. */ #if !defined (STM8L15X_MD) && !defined (STM8L15X_MDP) && !defined (STM8L15X_HD) #error "Please select first the target STM8L device used in your application (in stm8l15x.h file)" #endif /******************************************************************************/ /* Library configuration section */ /******************************************************************************/ /* Check the used compiler */ #if defined(__CSMC__) #define _COSMIC_ #elif defined(__RCST7__) #define _RAISONANCE_ #elif defined(__ICCSTM8__) #define _IAR_ #else #error "Unsupported Compiler!" /* Compiler defines not found */ #endif #if !defined USE_STDPERIPH_DRIVER /* Comment the line below if you will not use the peripherals drivers. In this case, these drivers will not be included and the application code will be based on direct access to peripherals registers */ /* #define USE_STDPERIPH_DRIVER*/ #endif /** * @brief In the following line adjust the value of External High Speed oscillator (HSE) used in your application Tip: To avoid modifying this file each time you need to use different HSE, you can define the HSE value in your toolchain compiler preprocessor. */ #if !defined HSE_Value #define HSE_VALUE ((uint32_t)16000000) /*!< Typical Value of the HSE in Hz */ #endif /* HSE_Value */ /** * @brief Definition of External Low Speed oscillator (LSE) frequency */ #define LSE_VALUE ((uint32_t)32768) /*!< Typical Value of the LSE in Hz */ /** * @brief Definition of Device on-chip RC oscillator frequencies */ #define HSI_VALUE ((uint32_t)16000000) /*!< Typical Value of the HSI in Hz */ #define LSI_VALUE ((uint32_t)38000) /*!< Typical Value of the LSI in Hz */ #ifdef _COSMIC_ #define FAR @far #define NEAR @near #define TINY @tiny #define EEPROM @eeprom #define __CONST const #define IN_RAM #elif defined (_RAISONANCE_) /* __RCST7__ */ #define FAR far #define NEAR data #define TINY page0 #define EEPROM eeprom #define __CONST code #define IN_RAM inram #if defined (STM8L15X_MD) || defined (STM8L15X_MDP) /*!< Used with memory Models for code less than 64K */ #define MEMCPY memcpy #else /* STM8L15X_HD */ /*!< Used with memory Models for code higher than 64K */ #define MEMCPY fmemcpy #endif /* STM8L15X_MD or STM8L15X_MDP */ #else /*_IAR_*/ #define FAR __far #define NEAR __near #define TINY __tiny #define EEPROM __eeprom #define __CONST const #define IN_RAM #endif /* __CSMC__ */ #if defined (STM8L15X_MD) || defined (STM8L15X_MDP) /*!< Used with memory Models for code smaller than 64K */ #define PointerAttr NEAR #else /* STM8L15X_HD */ /*!< Used with memory Models for code higher than 64K */ #define PointerAttr FAR #endif /* STM8L15X_MD or STM8L15X_MDP */ /* Uncomment the line below to enable the FLASH functions execution from RAM */ #if defined(_COSMIC_) #if !defined (COSMIC_RAM_EXECUTION) /* #define COSMIC_RAM_EXECUTION (1) */ #endif /* Uncomment the line below to enable the FLASH functions execution from RAM */ #elif defined (_RAISONANCE_) /* __RCST7__ */ #if !defined (RAISONANCE_RAM_EXECUTION) /* #define RAISONANCE_RAM_EXECUTION (1) */ #endif /* Uncomment the line below to enable the FLASH functions execution from RAM */ #elif defined (_IAR_) /* __RCST7__ */ #if !defined (IAR_RAM_EXECUTION) /* #define IAR_RAM_EXECUTION (1) */ #endif #endif /* __CSMC__ */ /*!< [31:16] STM8L15x Standard Peripheral Library main version */ #define __STM8L15X_STDPERIPH_VERSION_MAIN ((uint8_t)0x01) /*!< [15:8] STM8L15x Standard Peripheral Library sub1 version */ #define __STM8L15X_STDPERIPH_VERSION_SUB1 ((uint8_t)0x04) /*!< [7:0] STM8L15x Standard Peripheral Library sub2 version */ #define __STM8L15X_STDPERIPH_VERSION_SUB2 ((uint8_t)0x00) /*!< STM8L15x Standard Peripheral Library version number */ #define __STM8L15X_STDPERIPH_VERSION ((uint32_t)(__STM8L15X_STDPERIPH_VERSION_MAIN <<(uint32_t)16)\ | (__STM8L15X_STDPERIPH_VERSION_SUB1 <<(uint32_t) 8)\ | __STM8L15X_STDPERIPH_VERSION_SUB2) /******************************************************************************/ /* Includes ------------------------------------------------------------------*/ /* Exported types and constants-----------------------------------------------*/ /** @addtogroup Exported_types * @{ */ /** * IO definitions * * define access restrictions to peripheral registers */ #define __I volatile const /*!< defines 'read only' permissions */ #define __O volatile /*!< defines 'write only' permissions */ #define __IO volatile /*!< defines 'read / write' permissions */ /* Stupid thing to do...*/ #if 0 /*!< Signed integer types */ typedef signed char int8_t; typedef signed short int16_t; typedef signed long int32_t; /*!< Unsigned integer types */ typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned long uint32_t; #endif /*!< STM8Lx Standard Peripheral Library old types (maintained for legacy purpose) */ typedef int32_t s32; typedef int16_t s16; typedef int8_t s8; typedef uint32_t u32; typedef uint16_t u16; typedef uint8_t u8; typedef enum {FALSE = 0, TRUE = !FALSE} bool; typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus, BitStatus, BitAction; typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState; #define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE)) typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus; #define U8_MAX (255) #define S8_MAX (127) #define S8_MIN (-128) #define U16_MAX (65535u) #define S16_MAX (32767) #define S16_MIN (-32768) #define U32_MAX (4294967295uL) #define S32_MAX (2147483647) #define S32_MIN (-2147483648uL) /** * @} */ /** @addtogroup MAP_FILE_Exported_Types_and_Constants * @{ */ /******************************************************************************/ /* IP registers structures */ /******************************************************************************/ /*----------------------------------------------------------------------------*/ /** * @brief General Purpose I/Os (GPIO) */ typedef struct GPIO_struct { __IO uint8_t ODR; /*!< Output Data Register */ __IO uint8_t IDR; /*!< Input Data Register */ __IO uint8_t DDR; /*!< Data Direction Register */ __IO uint8_t CR1; /*!< Configuration Register 1 */ __IO uint8_t CR2; /*!< Configuration Register 2 */ } GPIO_TypeDef; /** @addtogroup GPIO_Registers_Reset_Value * @{ */ #define GPIO_ODR_RESET_VALUE ((uint8_t)0x00) #define GPIO_DDR_RESET_VALUE ((uint8_t)0x00) #define GPIO_CR1_RESET_VALUE ((uint8_t)0x00) #define GPIO_CR2_RESET_VALUE ((uint8_t)0x00) /** * @} */ /*----------------------------------------------------------------------------*/ /** * @brief Real-Time Clock (RTC) peripheral registers. */ typedef struct RTC_struct { __IO uint8_t TR1; /*!< Time Register 1*/ __IO uint8_t TR2; /*!< Time Register 2*/ __IO uint8_t TR3; /*!< Time Register 3*/ __IO uint8_t RESERVED0; __IO uint8_t DR1; /*!< Date Register 1*/ __IO uint8_t DR2; /*!< Date Register 2*/ __IO uint8_t DR3; /*!< Date Register 3*/ __IO uint8_t RESERVED1; __IO uint8_t CR1; /*!< Control Register 1*/ __IO uint8_t CR2; /*!< Control Register 2*/ __IO uint8_t CR3; /*!< Control Register 3*/ __IO uint8_t RESERVED2; __IO uint8_t ISR1; /*!< Initialisation and Status Register 1 */ __IO uint8_t ISR2; /*!< Initialisation and Status Register 2 */ __IO uint8_t RESERVED3; __IO uint8_t RESERVED4; __IO uint8_t SPRERH; /*!< Synchronous Prediv high Register */ __IO uint8_t SPRERL; /*!< Synchronous Prediv Low Register */ __IO uint8_t APRER; /*!< Asynchronous Prediv Register */ __IO uint8_t RESERVED5; __IO uint8_t WUTRH; /*!< Wake-Up Timer High Register */ __IO uint8_t WUTRL; /*!< Wake-Up Timer Low Register */ __IO uint8_t RESERVED6; __IO uint8_t SSRH; /*!< Sub Second High Register */ __IO uint8_t SSRL; /*!< Sub Second Low Register */ __IO uint8_t WPR; /*!< Write Protection Register */ __IO uint8_t SHIFTRH; /*!< Shift control High Register */ __IO uint8_t SHIFTRL; /*!< Shift control Low Register */ __IO uint8_t ALRMAR1; /*!< ALARM A Register 1 */ __IO uint8_t ALRMAR2; /*!< ALARM A Register 2 */ __IO uint8_t ALRMAR3; /*!< ALARM A Register 3 */ __IO uint8_t ALRMAR4; /*!< ALARM A Register 4 */ __IO uint8_t RESERVED7[4]; __IO uint8_t ALRMASSRH; /*!< ALARM A Subsecond Register High */ __IO uint8_t ALRMASSRL; /*!< ALARM A Subsecond Register Low */ __IO uint8_t ALRMASSMSKR; /*!< ALARM A Subsecond Mask Register */ __IO uint8_t RESERVED8[3]; __IO uint8_t CALRH; /*!< Calibration register high */ __IO uint8_t CALRL; /*!< Calibration register low */ __IO uint8_t TCR1; /*!< Tamper control register 1 */ __IO uint8_t TCR2; /*!< Tamper control register 2 */ } RTC_TypeDef; /** @addtogroup RTC_Registers_Reset_Value * @{ */ #define RTC_TR1_RESET_VALUE ((uint8_t)0x00) #define RTC_TR2_RESET_VALUE ((uint8_t)0x00) #define RTC_TR3_RESET_VALUE ((uint8_t)0x00) #define RTC_DR1_RESET_VALUE ((uint8_t)0x01) #define RTC_DR2_RESET_VALUE ((uint8_t)0x21) #define RTC_DR3_RESET_VALUE ((uint8_t)0x00) #define RTC_CR1_RESET_VALUE ((uint8_t)0x00) #define RTC_CR2_RESET_VALUE ((uint8_t)0x00) #define RTC_CR3_RESET_VALUE ((uint8_t)0x00) #define RTC_ISR1_RESET_VALUE ((uint8_t)0x07) #define RTC_ISR2_RESET_VALUE ((uint8_t)0x00) #define RTC_SPRERH_RESET_VALUE ((uint8_t)0x00) #define RTC_SPRERL_RESET_VALUE ((uint8_t)0xFF) #define RTC_APRER_RESET_VALUE ((uint8_t)0x7F) #define RTC_WUTRH_RESET_VALUE ((uint8_t)0xFF) #define RTC_WUTRL_RESET_VALUE ((uint8_t)0xFF) #define RTC_WPR_RESET_VALUE ((uint8_t)0x00) #define RTC_ALRMAR1_RESET_VALUE ((uint8_t)0x00) #define RTC_ALRMAR2_RESET_VALUE ((uint8_t)0x00) #define RTC_ALRMAR3_RESET_VALUE ((uint8_t)0x00) #define RTC_ALRMAR4_RESET_VALUE ((uint8_t)0x00) #define RTC_SHIFTRH_RESET_VALUE ((uint8_t)0x00) #define RTC_SHIFTRL_RESET_VALUE ((uint8_t)0x00) #define RTC_ALRMASSRH_RESET_VALUE ((uint8_t)0x00) #define RTC_ALRMASSRL_RESET_VALUE ((uint8_t)0x00) #define RTC_ALRMASSMSKR_RESET_VALUE ((uint8_t)0x00) #define RTC_CALRH_RESET_VALUE ((uint8_t)0x00) #define RTC_CALRL_RESET_VALUE ((uint8_t)0x00) #define RTC_TCR1_RESET_VALUE ((uint8_t)0x00) #define RTC_TCR2_RESET_VALUE ((uint8_t)0x00) /** * @} */ /** @addtogroup RTC_Registers_Bits_Definition * @{ */ /* Bits definition for RTC_TR1 register*/ #define RTC_TR1_ST ((uint8_t)0x70) #define RTC_TR1_SU ((uint8_t)0x0F) /* Bits definition for RTC_TR2 register*/ #define RTC_TR2_MNT ((uint8_t)0x70) #define RTC_TR2_MNU ((uint8_t)0x0F) /* Bits definition for RTC_TR3 register*/ #define RTC_TR3_PM ((uint8_t)0x40) #define RTC_TR3_HT ((uint8_t)0x30) #define RTC_TR3_HU ((uint8_t)0x0F) /* Bits definition for RTC_DR1 register*/ #define RTC_DR1_DT ((uint8_t)0x30) #define RTC_DR1_DU ((uint8_t)0x0F) /* Bits definition for RTC_DR2 register*/ #define RTC_DR2_WDU ((uint8_t)0xE0) #define RTC_DR2_MT ((uint8_t)0x10) #define RTC_DR2_MU ((uint8_t)0x0F) /* Bits definition for RTC_DR3 register*/ #define RTC_DR3_YT ((uint8_t)0xF0) #define RTC_DR3_YU ((uint8_t)0x0F) /* Bits definition for RTC_CR1 register*/ #define RTC_CR1_FMT ((uint8_t)0x40) #define RTC_CR1_RATIO ((uint8_t)0x20) #define RTC_CR1_WUCKSEL ((uint8_t)0x07) #define RTC_CR1_BYPSHAD ((uint8_t)0x10) /* Bits definition for RTC_CR2 register*/ #define RTC_CR2_WUTIE ((uint8_t)0x40) #define RTC_CR2_ALRAIE ((uint8_t)0x10) #define RTC_CR2_WUTE ((uint8_t)0x04) #define RTC_CR2_ALRAE ((uint8_t)0x01) #define RTC_CR2_ALRIE ((uint8_t)0x20) /* Bits definition for RTC_CR3 register*/ #define RTC_CR3_COE ((uint8_t)0x80) #define RTC_CR3_OSEL ((uint8_t)0x60) #define RTC_CR3_POL ((uint8_t)0x10) #define RTC_CR3_COSEL ((uint8_t)0x08) #define RTC_CR3_BCK ((uint8_t)0x04) #define RTC_CR3_SUB1H ((uint8_t)0x02) #define RTC_CR3_ADD1H ((uint8_t)0x01) /* Bits definition for RTC_ISR1 register*/ #define RTC_ISR1_INIT ((uint8_t)0x80) #define RTC_ISR1_INITF ((uint8_t)0x40) #define RTC_ISR1_RSF ((uint8_t)0x20) #define RTC_ISR1_INITS ((uint8_t)0x10) #define RTC_ISR1_SHPF ((uint8_t)0x08) #define RTC_ISR1_WUTWF ((uint8_t)0x04) #define RTC_ISR1_RECALPF ((uint8_t)0x02) #define RTC_ISR1_ALRAWF ((uint8_t)0x01) /* Bits definition for RTC_ISR2 register*/ #define RTC_ISR2_WUTF ((uint8_t)0x04) #define RTC_ISR2_ALRAF ((uint8_t)0x01) #define RTC_ISR2_TAMP3F ((uint8_t)0x80) #define RTC_ISR2_TAMP2F ((uint8_t)0x40) #define RTC_ISR2_TAMP1F ((uint8_t)0x20) /* Bits definition for RTC_SHIFTRH register*/ #define RTC_SHIFTRH_ADD1S ((uint8_t)0x80) #define RTC_SHIFTRH_SUBFS ((uint8_t)0x7F) /* Bits definition for RTC_SHIFTRL register*/ #define RTC_SHIFTRL_SUBFS ((uint8_t)0xFF) /* Bits definition for RTC_ALRMAR1 register*/ #define RTC_ALRMAR1_MSK1 ((uint8_t)0x80) #define RTC_ALRMAR1_ST ((uint8_t)0x70) #define RTC_ALRMAR1_SU ((uint8_t)0x0F) /* Bits definition for RTC_ALRMAR2 register*/ #define RTC_ALRMAR2_MSK2 ((uint8_t)0x80) #define RTC_ALRMAR2_MNT ((uint8_t)0x70) #define RTC_ALRMAR2_MNU ((uint8_t)0x0F) /* Bits definition for RTC_ALRMAR3 register*/ #define RTC_ALRMAR3_MSK3 ((uint8_t)0x80) #define RTC_ALRMAR3_PM ((uint8_t)0x40) #define RTC_ALRMAR3_HT ((uint8_t)0x30) #define RTC_ALRMAR3_HU ((uint8_t)0x0F) /* Bits definition for RTC_ALRMAR4 register*/ #define RTC_ALRMAR4_MSK4 ((uint8_t)0x80) #define RTC_ALRMAR4_WDSEL ((uint8_t)0x40) #define RTC_ALRMAR4_DT ((uint8_t)0x30) #define RTC_ALRMAR4_DU ((uint8_t)0x0F) /* Bits definition for RTC_ALRMASSRH register*/ #define RTC_ALRMASSRH_ALSS ((uint8_t)0x7F) /* Bits definition for RTC_ALRMASSRL register*/ #define RTC_ALRMASSRL_ALSS ((uint8_t)0xFF) /* Bits definition for RTC_ALRMASSMSKR register*/ #define RTC_ALRMASSMSKR_MASKSS ((uint8_t)0x1F) /* Bits definition for RTC_CALRH register*/ #define RTC_CALRH_CALP ((uint8_t)0x80) #define RTC_CALRH_CALW8 ((uint8_t)0x40) #define RTC_CALRH_CALW16 ((uint8_t)0x20) #define RTC_CALRH_CALWx ((uint8_t)0x60) #define RTC_CALRH_CALM ((uint8_t)0x01) /* Bits definition for RTC_CALRL register*/ #define RTC_CALRL_CALM ((uint8_t)0xFF) /* Bits definition for RTC_TCR1 register*/ #define RTC_TCR1_TAMP3LEVEL ((uint8_t)0x40) #define RTC_TCR1_TAMP3E ((uint8_t)0x20) #define RTC_TCR1_TAMP2LEVEL ((uint8_t)0x10) #define RTC_TCR1_TAMP2E ((uint8_t)0x08) #define RTC_TCR1_TAMP1LEVEL ((uint8_t)0x04) #define RTC_TCR1_TAMP1E ((uint8_t)0x02) #define RTC_TCR1_TAMPIE ((uint8_t)0x01) /* Bits definition for RTC_TCR2 register*/ #define RTC_TCR2_TAMPPUDIS ((uint8_t)0x80) #define RTC_TCR2_TAMPPRCH ((uint8_t)0x60) #define RTC_TCR2_TAMPFLT ((uint8_t)0x18) #define RTC_TCR2_TAMPFREQ ((uint8_t)0x07) /*RTC special defines */ #define RTC_WPR_EnableKey ((uint8_t)0xFF) #define RTC_WPR_DisableKey1 ((uint8_t)0xCA) #define RTC_WPR_DisableKey2 ((uint8_t)0x53) /** * @} */ /** * @brief CSS on LSE registers. */ typedef struct CSSLSE_struct { __IO uint8_t CSR; /*!< Control and Status Register*/ } CSSLSE_TypeDef; /** @addtogroup CSSLSE_Registers_Reset_Value * @{ */ #define CSSLSE_CSR_RESET_VALUE ((uint8_t)0x00) /** * @} */ /** @addtogroup CSSLSE_Registers_Bits_Definition * @{ */ /* Bits definition for CSSLSE_CSR register*/ #define CSSLSE_CSR_SWITCHF ((uint8_t)0x10) #define CSSLSE_CSR_CSSF ((uint8_t)0x08) #define CSSLSE_CSR_CSSIE ((uint8_t)0x04) #define CSSLSE_CSR_SWITCHEN ((uint8_t)0x02) #define CSSLSE_CSR_CSSEN ((uint8_t)0x01) /** * @} */ /*----------------------------------------------------------------------------*/ /** * @brief Beeper (BEEP) peripheral registers. */ typedef struct BEEP_struct { __IO uint8_t CSR1; /*!< BEEP Control status register1 */ uint8_t RSERVED1; uint8_t RESERVED2; __IO uint8_t CSR2; /*!< BEEP Control status register2 */ } BEEP_TypeDef; /** @addtogroup BEEP_Registers_Reset_Value * @{ */ #define BEEP_CSR1_RESET_VALUE ((uint8_t)0x00) #define BEEP_CSR2_RESET_VALUE ((uint8_t)0x1F) /** * @} */ /** @addtogroup BEEP_Registers_Bits_Definition * @{ */ #define BEEP_CSR1_MSR ((uint8_t)0x01) /*!< Measurement enable mask */ #define BEEP_CSR2_BEEPSEL ((uint8_t)0xC0) /*!< Beeper frequency selection mask */ #define BEEP_CSR2_BEEPEN ((uint8_t)0x20) /*!< Beeper enable mask */ #define BEEP_CSR2_BEEPDIV ((uint8_t)0x1F) /*!< Beeper Divider prescalar mask */ /** * @} */ /*----------------------------------------------------------------------------ok*/ /** * @brief Configuration Registers (CFG) */ typedef struct CFG_struct { __IO uint8_t GCR; /*!< Global Configuration register */ } CFG_TypeDef; /** @addtogroup CFG_Registers_Reset_Value * @{ */ #define CFG_GCR_RESET_VALUE ((uint8_t)0x00) /** * @} */ /** @addtogroup CFG_Registers_Bits_Definition * @{ */ #define CFG_GCR_SWD ((uint8_t)0x01) /*!< Swim disable bit mask */ #define CFG_GCR_AL ((uint8_t)0x02) /*!< Activation Level bit mask */ /** * @} */ /*----------------------------------------------------------------------------ok*/ /** * @brief SYSCFG */ typedef struct SYSCFG_struct { __IO uint8_t RMPCR3; /*!< Remap control register 3 */ __IO uint8_t RMPCR1; /*!< Remap control register 1 */ __IO uint8_t RMPCR2; /*!< Remap control register 2 */ } SYSCFG_TypeDef; /** @addtogroup SYSCFG_Registers_Reset_Value * @{ */ #define SYSCFG_RMPCR1_RESET_VALUE ((uint8_t)0x0C) #define SYSCFG_RMPCR2_RESET_VALUE ((uint8_t)0x00) #define SYSCFG_RMPCR3_RESET_VALUE ((uint8_t)0x00) /** * @} */ /** @addtogroup SYSCFG_Registers_Bits_Definition * @{ */ /* For DMA Channel Mapping*/ #define SYSCFG_RMPCR1_ADC1DMA_REMAP ((uint8_t)0x03) /*!< ADC1 DMA channel remapping */ #define SYSCFG_RMPCR1_TIM4DMA_REMAP ((uint8_t)0x0C) /*!< TIM4 DMA channel remapping */ /* For GPIO Reapping*/ #define SYSCFG_RMPCR1_USART1TR_REMAP ((uint8_t)0x30) /*!< USART1_TX and USART1_RX remapping */ #define SYSCFG_RMPCR1_USART1CK_REMAP ((uint8_t)0x40) /*!< USART1_CK remapping */ #define SYSCFG_RMPCR1_SPI1_REMAP ((uint8_t)0x80) /*!< SPI1 remapping */ #define SYSCFG_RMPCR2_ADC1TRIG_REMAP ((uint8_t)0x01) /*!< ADC1 External Trigger remap */ #define SYSCFG_RMPCR2_TIM2TRIG_REMAP ((uint8_t)0x02) /*!< TIM2 Trigger remap */ #define SYSCFG_RMPCR2_TIM3TRIG_REMAP1 ((uint8_t)0x04) /*!< TIM3 Trigger remap 1 */ #define SYSCFG_RMPCR2_TIM2TRIG_LSE ((uint8_t)0x08) /*!< TIM2 Trigger remap to LSE */ #define SYSCFG_RMPCR2_TIM3TRIG_LSE ((uint8_t)0x10) /*!< TIM3 Trigger remap to LSE */ #define SYSCFG_RMPCR2_SPI2_REMAP ((uint8_t)0x20) /*!< SPI2 remapping */ #define SYSCFG_RMPCR2_TIM3TRIG_REMAP2 ((uint8_t)0x40) /*!< TIM3 Trigger remap 2 */ #define SYSCFG_RMPCR2_TIM23BKIN_REMAP ((uint8_t)0x80) /*!< TIM2 & TIM3 Break input remap */ #define SYSCFG_RMPCR3_SPI1_REMAP ((uint8_t)0x01) /*!< SPI1 remapping */ #define SYSCFG_RMPCR3_USART3TR_REMAP ((uint8_t)0x02) /*!< USART3_TX and USART3_RX remapping */ #define SYSCFG_RMPCR3_USART3CK_REMAP ((uint8_t)0x04) /*!< USART3_CK remapping */ #define SYSCFG_RMPCR3_TIM3CH1_REMAP ((uint8_t)0x08) /*!< TIM3 channel 1 remapping */ #define SYSCFG_RMPCR3_TIM3CH2_REMAP ((uint8_t)0x10) /*!< TIM3 channel 2 remapping */ #define SYSCFG_RMPCR3_CCO_REMAP ((uint8_t)0x20) /*!< CCO remapping */ /** * @} */ /*----------------------------------------------------------------------------ok*/ /** * @brief Clock Controller (CLK) */ typedef struct CLK_struct { __IO uint8_t CKDIVR; /*!< Clock Master Divider Register */ __IO uint8_t CRTCR; /*!< RTC Clock selection Register */ __IO uint8_t ICKCR; /*!< Internal Clocks Control Register */ __IO uint8_t PCKENR1; /*!< Peripheral Clock Gating Register 1 */ __IO uint8_t PCKENR2; /*!< Peripheral Clock Gating Register 2 */ __IO uint8_t CCOR; /*!< Configurable Clock Output Register */ __IO uint8_t ECKCR; /*!< External Clocks Control Register */ __IO uint8_t SCSR; /*!< System clock status Register */ __IO uint8_t SWR; /*!< System clock Switch Register */ __IO uint8_t SWCR; /*!< Switch Control Register */ __IO uint8_t CSSR; /*!< Clock Security Sytem Register */ __IO uint8_t CBEEPR; /*!< Clock BEEP Register */ __IO uint8_t HSICALR; /*!< HSI Calibration Register */ __IO uint8_t HSITRIMR; /*!< HSI clock Calibration Trimmer Register */ __IO uint8_t HSIUNLCKR; /*!< HSI Unlock Register */ __IO uint8_t REGCSR; /*!< Main regulator control status register */ __IO uint8_t PCKENR3; /*!< Peripheral Clock Gating Register 3 */ } CLK_TypeDef; /** @addtogroup CLK_Registers_Reset_Value * @{ */ #define CLK_CKDIVR_RESET_VALUE ((uint8_t)0x03) #define CLK_CRTCR_RESET_VALUE ((uint8_t)0x00) #define CLK_ICKCR_RESET_VALUE ((uint8_t)0x11) #define CLK_PCKENR1_RESET_VALUE ((uint8_t)0x00) #define CLK_PCKENR2_RESET_VALUE ((uint8_t)0x80) #define CLK_PCKENR3_RESET_VALUE ((uint8_t)0x00) #define CLK_CCOR_RESET_VALUE ((uint8_t)0x00) #define CLK_ECKCR_RESET_VALUE ((uint8_t)0x00) #define CLK_SCSR_RESET_VALUE ((uint8_t)0x01) #define CLK_SWR_RESET_VALUE ((uint8_t)0x01) #define CLK_SWCR_RESET_VALUE ((uint8_t)0x00) #define CLK_CSSR_RESET_VALUE ((uint8_t)0x00) #define CLK_CBEEPR_RESET_VALUE ((uint8_t)0x00) #define CLK_HSICALR_RESET_VALUE ((uint8_t)0x00) #define CLK_HSITRIMR_RESET_VALUE ((uint8_t)0x00) #define CLK_HSIUNLCKR_RESET_VALUE ((uint8_t)0x00) #define CLK_REGCSR_RESET_VALUE ((uint8_t)0xB9) /** * @} */ /** @addtogroup CLK_Registers_Bits_Definition * @{ */ #define CLK_CKDIVR_CKM ((uint8_t)0x07) /*!< System clock prescaler mask */ #define CLK_CRTCR_RTCDIV ((uint8_t)0xE0) /*!< RTC clock prescaler mask*/ #define CLK_CRTCR_RTCSEL ((uint8_t)0x1E) /*!< RTC clock output selection mask */ #define CLK_CRTCR_RTCSWBSY ((uint8_t)0x01) /*!< RTC clock switch busy */ #define CLK_ICKCR_BEEPAHALT ((uint8_t)0x40) /*!< BEEP clock Active Halt/Halt mode */ #define CLK_ICKCR_FHWU ((uint8_t)0x20) /*!< Fast Wake-up from Active Halt/Halt mode */ #define CLK_ICKCR_SAHALT ((uint8_t)0x10) /*!< Slow Active-halt mode */ #define CLK_ICKCR_LSIRDY ((uint8_t)0x08) /*!< Low speed internal RC oscillator ready */ #define CLK_ICKCR_LSION ((uint8_t)0x04) /*!< Low speed internal RC oscillator enable */ #define CLK_ICKCR_HSIRDY ((uint8_t)0x02) /*!< High speed internal RC oscillator ready */ #define CLK_ICKCR_HSION ((uint8_t)0x01) /*!< High speed internal RC oscillator enable */ #define CLK_PCKENR1_TIM2 ((uint8_t)0x01) /*!< Timer 2 clock enable */ #define CLK_PCKENR1_TIM3 ((uint8_t)0x02) /*!< Timer 3 clock enable */ #define CLK_PCKENR1_TIM4 ((uint8_t)0x04) /*!< Timer 4 clock enable */ #define CLK_PCKENR1_I2C1 ((uint8_t)0x08) /*!< I2C1 clock enable */ #define CLK_PCKENR1_SPI1 ((uint8_t)0x10) /*!< SPI1 clock enable */ #define CLK_PCKENR1_USART1 ((uint8_t)0x20) /*!< USART1 clock enable */ #define CLK_PCKENR1_BEEP ((uint8_t)0x40) /*!< BEEP clock enable */ #define CLK_PCKENR1_DAC ((uint8_t)0x80) /*!< DAC clock enable */ #define CLK_PCKENR2_ADC1 ((uint8_t)0x01) /*!< ADC1 clock enable */ #define CLK_PCKENR2_TIM1 ((uint8_t)0x02) /*!< TIM1 clock enable */ #define CLK_PCKENR2_RTC ((uint8_t)0x04) /*!< RTC clock enable */ #define CLK_PCKENR2_LCD ((uint8_t)0x08) /*!< LCD clock enable */ #define CLK_PCKENR2_DMA1 ((uint8_t)0x10) /*!< DMA1 clock enable */ #define CLK_PCKENR2_COMP ((uint8_t)0x20) /*!< Comparator clock enable */ #define CLK_PCKENR2_BOOTROM ((uint8_t)0x80) /*!< Boot ROM clock enable */ #define CLK_PCKENR3_AES ((uint8_t)0x01) /*!< AES clock enable */ #define CLK_PCKENR3_TIM5 ((uint8_t)0x02) /*!< Timer 5 clock enable */ #define CLK_PCKENR3_SPI2 ((uint8_t)0x04) /*!< SPI2 clock enable */ #define CLK_PCKENR3_UASRT2 ((uint8_t)0x08) /*!< USART2 clock enable */ #define CLK_PCKENR3_USART3 ((uint8_t)0x10) /*!< USART3 clock enable */ #define CLK_CCOR_CCODIV ((uint8_t)0xE0) /*!< Configurable Clock output prescaler */ #define CLK_CCOR_CCOSEL ((uint8_t)0x1E) /*!< Configurable clock output selection */ #define CLK_CCOR_CCOSWBSY ((uint8_t)0x01) /*!< Configurable clock output switch busy flag */ #define CLK_ECKCR_LSEBYP ((uint8_t)0x20) /*!< Low speed external clock bypass */ #define CLK_ECKCR_HSEBYP ((uint8_t)0x10) /*!< High speed external clock bypass */ #define CLK_ECKCR_LSERDY ((uint8_t)0x08) /*!< Low speed external crystal oscillator ready */ #define CLK_ECKCR_LSEON ((uint8_t)0x04) /*!< Low speed external crystal oscillator enable */ #define CLK_ECKCR_HSERDY ((uint8_t)0x02) /*!< High speed external crystal oscillator ready */ #define CLK_ECKCR_HSEON ((uint8_t)0x01) /*!< High speed external crystal oscillator enable */ #define CLK_SCSR_CKM ((uint8_t)0x0F) /*!< System clock status bits */ #define CLK_SWR_SWI ((uint8_t)0x0F) /*!< System clock selection bits */ #define CLK_SWCR_SWIF ((uint8_t)0x08) /*!< Clock switch interrupt flag */ #define CLK_SWCR_SWIEN ((uint8_t)0x04) /*!< Clock switch interrupt enable */ #define CLK_SWCR_SWEN ((uint8_t)0x02) /*!< Switch start/stop */ #define CLK_SWCR_SWBSY ((uint8_t)0x01) /*!< Switch busy */ #define CLK_CSSR_CSSDGON ((uint8_t)0x10) /*!< Clock security sytem deglitcher system */ #define CLK_CSSR_CSSD ((uint8_t)0x08) /*!< Clock security sytem detection */ #define CLK_CSSR_CSSDIE ((uint8_t)0x04) /*!< Clock security system detection interrupt enable */ #define CLK_CSSR_AUX ((uint8_t)0x02) /*!< Auxiliary oscillator connected to master clock */ #define CLK_CSSR_CSSEN ((uint8_t)0x01) /*!< Clock security system enable */ #define CLK_CBEEPR_CLKBEEPSEL ((uint8_t)0x06) /*!< Configurable BEEP clock source selection */ #define CLK_CBEEPR_BEEPSWBSY ((uint8_t)0x01) /*!< BEEP clock busy in switch */ #define CLK_HSICALR_HSICAL ((uint8_t)0xFF) /*!< Copy of otpion byte trimming HSI oscillator */ #define CLK_HSITRIMR_HSITRIM ((uint8_t)0xFF) /*!< High speed internal oscillator trimmer */ #define CLK_HSIUNLCKR_HSIUNLCK ((uint8_t)0xFF) /*!< High speed internal oscillator trimmer unlock */ #define CLK_REGCSR_EEREADY ((uint8_t)0x80) /*!< Flash program memory and Data EEPROM ready */ #define CLK_REGCSR_EEBUSY ((uint8_t)0x40) /*!< Flash program memory and Data EEPROM busy */ #define CLK_REGCSR_LSEPD ((uint8_t)0x20) /*!< LSE power-down */ #define CLK_REGCSR_HSEPD ((uint8_t)0x10) /*!< HSE power-down */ #define CLK_REGCSR_LSIPD ((uint8_t)0x08) /*!< LSI power-down */ #define CLK_REGCSR_HSIPD ((uint8_t)0x04) /*!< HSI power-down */ #define CLK_REGCSR_REGOFF ((uint8_t)0x02) /*!< Main regulator OFF */ #define CLK_REGCSR_REGREADY ((uint8_t)0x01) /*!< Main regulator ready */ /** * @} */ /*----------------------------------------------------------------------------ok*/ /** * @brief Comparator interface (COMP) */ typedef struct COMP_struct { __IO uint8_t CSR1; /*!< Control status register 1 */ __IO uint8_t CSR2; /*!< Control status register 2 */ __IO uint8_t CSR3; /*!< Control status register 3 */ __IO uint8_t CSR4; /*!< Control status register 4 */ __IO uint8_t CSR5; /*!< Control status register 5 */ } COMP_TypeDef; /** @addtogroup COMP_Registers_Reset_Value * @{ */ #define COMP_CSR1_RESET_VALUE ((uint8_t)0x00) #define COMP_CSR2_RESET_VALUE ((uint8_t)0x00) #define COMP_CSR3_RESET_VALUE ((uint8_t)0xC0) #define COMP_CSR4_RESET_VALUE ((uint8_t)0x00) #define COMP_CSR5_RESET_VALUE ((uint8_t)0x00) /** * @} */ /** @addtogroup COMP_Registers_Bits_Definition * @{ */ /* CSR1 */ #define COMP_CSR1_IE1 ((uint8_t)0x20) /*!< Comparator 1 Interrupt Enable Mask. */ #define COMP_CSR1_EF1 ((uint8_t)0x10) /*!< Comparator 1 Event Flag Mask. */ #define COMP_CSR1_CMP1OUT ((uint8_t)0x08) /*!< Comparator 1 Ouptput Mask. */ #define COMP_CSR1_STE ((uint8_t)0x04) /*!< Schmitt trigger enable Mask. */ #define COMP_CSR1_CMP1 ((uint8_t)0x03) /*!< Comparator 1 Configuration Mask. */ /* CSR2 */ #define COMP_CSR2_IE2 ((uint8_t)0x20) /*!< Comparator 2 Interrupt Enable Mask. */ #define COMP_CSR2_EF2 ((uint8_t)0x10) /*!< Comparator 2 Event Flag Mask. */ #define COMP_CSR2_CMP2OUT ((uint8_t)0x08) /*!< Comparator 2 Ouptput Mask. */ #define COMP_CSR2_SPEED ((uint8_t)0x04) /*!< Comparator 2 speed modeMask. */ #define COMP_CSR2_CMP2 ((uint8_t)0x03) /*!< Comparator 2 Configuration Mask. */ /* CSR3 */ #define COMP_CSR3_OUTSEL ((uint8_t)0xC0) /*!< Comparator 2 output selection Mask. */ #define COMP_CSR3_INSEL ((uint8_t)0x38) /*!< Inversion input selection Mask. */ #define COMP_CSR3_VREFEN ((uint8_t)0x04) /*!< Internal reference voltage Enable Mask. */ #define COMP_CSR3_WNDWE ((uint8_t)0x02) /*!< Window Mode Enable Mask. */ #define COMP_CSR3_VREFOUTEN ((uint8_t)0x01) /*!< VREF Output Enable Mask. */ /* CSR4 */ #define COMP_CSR4_NINVTRIG ((uint8_t)0x38) /*!< COMP2 non-inverting input Mask. */ #define COMP_CSR4_INVTRIG ((uint8_t)0x07) /*!< COMP2 inverting input Mask. */ /* CSR5 */ #define COMP_CSR5_DACTRIG ((uint8_t)0x38) /*!< DAC outputs Mask. */ #define COMP_CSR5_VREFTRIG ((uint8_t)0x07) /*!< VREF outputs Mask. */ /** * @} */ /*----------------------------------------------------------------------------ok*/ /** * @brief External Interrupt Controller (EXTI) */ typedef struct EXTI_struct { __IO uint8_t CR1; /*!< The four LSB EXTI pin sensitivity */ __IO uint8_t CR2; /*!< The four MSB EXTI pin sensitivity */ __IO uint8_t CR3; /*!< EXTI port B & port D sensitivity */ __IO uint8_t SR1; /*!< Pins Status flag register 1 */ __IO uint8_t SR2; /*!< Ports Status flage register 2 */ __IO uint8_t CONF1; /*!< Port interrupt selector */ __IO uint8_t RESERVED[4]; /*!< reserved area */ __IO uint8_t CR4; /*!< EXTI port G & port H sensitivity */ __IO uint8_t CONF2; /*!< Port interrupt selector */ } EXTI_TypeDef; /** @addtogroup EXTI_Registers_Reset_Value * @{ */ #define EXTI_CR1_RESET_VALUE ((uint8_t)0x00) #define EXTI_CR2_RESET_VALUE ((uint8_t)0x00) #define EXTI_CR3_RESET_VALUE ((uint8_t)0x00) #define EXTI_CONF1_RESET_VALUE ((uint8_t)0x00) #define EXTI_SR1_RESET_VALUE ((uint8_t)0x00) #define EXTI_SR2_RESET_VALUE ((uint8_t)0x00) #define EXTI_CR4_RESET_VALUE ((uint8_t)0x00) #define EXTI_CONF2_RESET_VALUE ((uint8_t)0x00) /** * @} */ /** @addtogroup EXTI_Registers_Bits_Definition * @{ */ /* CR1 */ #define EXTI_CR1_P3IS ((uint8_t)0xC0) /*!< EXTI Pin 3 external interrupt sensitivity bit Mask */ #define EXTI_CR1_P2IS ((uint8_t)0x30) /*!< EXTI Pin 2 external interrupt sensitivity bit Mask */ #define EXTI_CR1_P1IS ((uint8_t)0x0C) /*!< EXTI Pin 1 external interrupt sensitivity bit Mask */ #define EXTI_CR1_P0IS ((uint8_t)0x03) /*!< EXTI Pin 0 external interrupt sensitivity bit Mask */ /* CR2 */ #define EXTI_CR2_P7IS ((uint8_t)0xC0) /*!< EXTI Pin 7 external interrupt sensitivity bit Mask */ #define EXTI_CR2_P6IS ((uint8_t)0x30) /*!< EXTI Pin 6 external interrupt sensitivity bit Mask */ #define EXTI_CR2_P5IS ((uint8_t)0x0C) /*!< EXTI Pin 5 external interrupt sensitivity bit Mask */ #define EXTI_CR2_P4IS ((uint8_t)0x03) /*!< EXTI Pin 4 external interrupt sensitivity bit Mask */ /* CR3 */ #define EXTI_CR3_PBIS ((uint8_t)0x03) /*!< EXTI PORTB external interrupt sensitivity bits Mask */ #define EXTI_CR3_PDIS ((uint8_t)0x0C) /*!< EXTI PORTD external interrupt sensitivity bits Mask */ #define EXTI_CR3_PEIS ((uint8_t)0x30) /*!< EXTI PORTE external interrupt sensitivity bits Mask */ #define EXTI_CR3_PFIS ((uint8_t)0xC0) /*!< EXTI PORTF external interrupt sensitivity bits Mask */ /* CONF1 */ #define EXTI_CONF1_PBLIS ((uint8_t)0x01) /*!< EXTI PORTB low interrupt selector bit Mask */ #define EXTI_CONF1_PBHIS ((uint8_t)0x02) /*!< EXTI PORTB high interrupt selector bit Mask */ #define EXTI_CONF1_PDLIS ((uint8_t)0x04) /*!< EXTI PORTD low interrupt selector bit Mask */ #define EXTI_CONF1_PDHIS ((uint8_t)0x08) /*!< EXTI PORTD high interrupt selector bit Mask */ #define EXTI_CONF1_PELIS ((uint8_t)0x10) /*!< EXTI PORTE low interrupt selector bit Mask */ #define EXTI_CONF1_PEHIS ((uint8_t)0x20) /*!< EXTI PORTE high interrupt selector bit Mask */ #define EXTI_CONF1_PFLIS ((uint8_t)0x40) /*!< EXTI PORTF low interrupt selector bit Mask */ #define EXTI_CONF1_PFES ((uint8_t)0x80) /*!< EXTI PORTF or PORTE interrupt selector bit Mask */ /* CR4 */ #define EXTI_CR4_PGIS ((uint8_t)0x03) /*!< EXTI PORTG external interrupt sensitivity bits Mask */ #define EXTI_CR4_PHIS ((uint8_t)0x0C) /*!< EXTI PORTH external interrupt sensitivity bits Mask */ /* CONF2 */ #define EXTI_CONF2_PFHIS ((uint8_t)0x01) /*!< EXTI PORTF high interrupt selector bit Mask */ #define EXTI_CONF2_PGLIS ((uint8_t)0x02) /*!< EXTI PORTG low interrupt selector bit Mask */ #define EXTI_CONF2_PGHIS ((uint8_t)0x04) /*!< EXTI PORTG high interrupt selector bit Mask */ #define EXTI_CONF2_PHLIS ((uint8_t)0x08) /*!< EXTI PORTH low interrupt selector bit Mask */ #define EXTI_CONF2_PHHIS ((uint8_t)0x10) /*!< EXTI PORTH high interrupt selector bit Mask */ #define EXTI_CONF2_PGBS ((uint8_t)0x20) /*!< EXTI PORTB or PORTG interrupt selector bit Mask */ #define EXTI_CONF2_PHDS ((uint8_t)0x40) /*!< EXTI PORTD or PORTH interrupt selector bit Mask */ /** * @} */ /*----------------------------------------------------------------------------ok*/ /** * @brief FLASH and Data EEPROM */ typedef struct FLASH_struct { __IO uint8_t CR1; /*!< Flash control register 1 */ __IO uint8_t CR2; /*!< Flash control register 2 */ __IO uint8_t PUKR; /*!< Flash program memory unprotection register */ __IO uint8_t DUKR; /*!< Data EEPROM unprotection register */ __IO uint8_t IAPSR; /*!< Flash in-application programming status register */ } FLASH_TypeDef; /** @addtogroup FLASH_Registers_Reset_Value * @{ */ #define FLASH_CR1_RESET_VALUE ((uint8_t)0x00) #define FLASH_CR2_RESET_VALUE ((uint8_t)0x00) #define FLASH_PUKR_RESET_VALUE ((uint8_t)0xAE) #define FLASH_DUKR_RESET_VALUE ((uint8_t)0x56) #define FLASH_IAPSR_RESET_VALUE ((uint8_t)0x40) /** * @} */ /** @addtogroup FLASH_Registers_Bits_Definition * @{ */ #define FLASH_CR1_EEPM ((uint8_t)0x08) /*!< Flash low power selection during Run and Low power run mode Mask */ #define FLASH_CR1_WAITM ((uint8_t)0x04) /*!< Flash low power selection during Wait and Low power wait mode Mask */ #define FLASH_CR1_IE ((uint8_t)0x02) /*!< Flash Interrupt enable Mask */ #define FLASH_CR1_FIX ((uint8_t)0x01) /*!< Fix programming time Mask */ #define FLASH_CR2_OPT ((uint8_t)0x80) /*!< Enable write access to option bytes*/ #define FLASH_CR2_WPRG ((uint8_t)0x40) /*!< Word write once Mask */ #define FLASH_CR2_ERASE ((uint8_t)0x20) /*!< Erase block Mask */ #define FLASH_CR2_FPRG ((uint8_t)0x10) /*!< Fast programming mode Mask */ #define FLASH_CR2_PRG ((uint8_t)0x01) /*!< Program block Mask */ #define FLASH_IAPSR_HVOFF ((uint8_t)0x40) /*!< End of high voltage flag Mask */ #define FLASH_IAPSR_DUL ((uint8_t)0x08) /*!< Data EEPROM unlocked flag Mask */ #define FLASH_IAPSR_EOP ((uint8_t)0x04) /*!< End of operation flag Mask */ #define FLASH_IAPSR_PUL ((uint8_t)0x02) /*!< Program memory unlocked flag Mask */ #define FLASH_IAPSR_WR_PG_DIS ((uint8_t)0x01) /*!< Write attempted to protected page Mask */ #define FLASH_PUKR_PUK ((uint8_t)0xFF) /*!< Flash Program memory unprotection mask */ #define FLASH_DUKR_DUK ((uint8_t)0xFF) /*!< Data EEPROM unprotection mask */ /** * @} */ /*----------------------------------------------------------------------------*/ /** * @brief Inter-Integrated Circuit (I2C) */ typedef struct I2C_struct { __IO uint8_t CR1; /*!< I2C control register 1 */ __IO uint8_t CR2; /*!< I2C control register 2 */ __IO uint8_t FREQR; /*!< I2C frequency register */ __IO uint8_t OARL; /*!< I2C own address register 1 LSB */ __IO uint8_t OARH; /*!< I2C own address register 1 MSB */ __IO uint8_t OAR2; /*!< I2C own address register 2 */ __IO uint8_t DR; /*!< I2C data register */ __IO uint8_t SR1; /*!< I2C status register 1 */ __IO uint8_t SR2; /*!< I2C status register 2 */ __IO uint8_t SR3; /*!< I2C status register 3 */ __IO uint8_t ITR; /*!< I2C interrupt & DMA register */ __IO uint8_t CCRL; /*!< I2C clock control register low */ __IO uint8_t CCRH; /*!< I2C clock control register high */ __IO uint8_t TRISER; /*!< I2C maximum rise time register */ __IO uint8_t PECR; /*!< I2CPacket Error Checking register */ } I2C_TypeDef; /** @addtogroup I2C_Registers_Reset_Value * @{ */ #define I2C_CR1_RESET_VALUE ((uint8_t)0x00) #define I2C_CR2_RESET_VALUE ((uint8_t)0x00) #define I2C_FREQR_RESET_VALUE ((uint8_t)0x00) #define I2C_OARL_RESET_VALUE ((uint8_t)0x00) #define I2C_OARH_RESET_VALUE ((uint8_t)0x00) #define I2C_OAR2_RESET_VALUE ((uint8_t)0x00) #define I2C_DR_RESET_VALUE ((uint8_t)0x00) #define I2C_SR1_RESET_VALUE ((uint8_t)0x00) #define I2C_SR2_RESET_VALUE ((uint8_t)0x00) #define I2C_SR3_RESET_VALUE ((uint8_t)0x00) #define I2C_ITR_RESET_VALUE ((uint8_t)0x00) #define I2C_CCRL_RESET_VALUE ((uint8_t)0x00) #define I2C_CCRH_RESET_VALUE ((uint8_t)0x00) #define I2C_TRISER_RESET_VALUE ((uint8_t)0x02) #define I2C_PECR_RESET_VALUE ((uint8_t)0x00) /** * @} */ /** @addtogroup I2C_Registers_Bits_Definition * @{ */ #define I2C_CR1_NOSTRETCH ((uint8_t)0x80) /*!< Clock Stretching Disable (Slave mode) */ #define I2C_CR1_ENGC ((uint8_t)0x40) /*!< General Call Enable */ #define I2C_CR1_ENPEC ((uint8_t)0x20) /*!< PEC Enable */ #define I2C_CR1_ARP ((uint8_t)0x10) /*!< ARP Enable */ #define I2C_CR1_SMBTYPE ((uint8_t)0x08) /*!< SMBus type */ #define I2C_CR1_SMBUS ((uint8_t)0x02) /*!< SMBus mode */ #define I2C_CR1_PE ((uint8_t)0x01) /*!< Peripheral Enable */ #define I2C_CR2_SWRST ((uint8_t)0x80) /*!< Software Reset */ #define I2C_CR2_ALERT ((uint8_t)0x20) /*!< SMBus Alert*/ #define I2C_CR2_PEC ((uint8_t)0x10) /*!< Packet Error Checking */ #define I2C_CR2_POS ((uint8_t)0x08) /*!< Acknowledge */ #define I2C_CR2_ACK ((uint8_t)0x04) /*!< Acknowledge Enable */ #define I2C_CR2_STOP ((uint8_t)0x02) /*!< Stop Generation */ #define I2C_CR2_START ((uint8_t)0x01) /*!< Start Generation */ #define I2C_FREQR_FREQ ((uint8_t)0x3F) /*!< Peripheral Clock Frequency */ #define I2C_OARL_ADD ((uint8_t)0xFE) /*!< Interface Address bits [7..1] */ #define I2C_OARL_ADD0 ((uint8_t)0x01) /*!< Interface Address bit0 */ #define I2C_OARH_ADDMODE ((uint8_t)0x80) /*!< Addressing Mode (Slave mode) */ #define I2C_OARH_ADDCONF ((uint8_t)0x40) /*!< Address mode configuration */ #define I2C_OARH_ADD ((uint8_t)0x06) /*!< Interface Address bits [9..8] */ #define I2C_OAR2_ADD2 ((uint8_t)0xFE) /*!< Interface Address bits [7..1] */ #define I2C_OAR2_ENDUAL ((uint8_t)0x01) /*!< Dual addressing mode enable */ #define I2C_DR_DR ((uint8_t)0xFF) /*!< Data Register */ #define I2C_SR1_TXE ((uint8_t)0x80) /*!< Data Register Empty (transmitters) */ #define I2C_SR1_RXNE ((uint8_t)0x40) /*!< Data Register not Empty (receivers) */ #define I2C_SR1_STOPF ((uint8_t)0x10) /*!< Stop detection (Slave mode) */ #define I2C_SR1_ADD10 ((uint8_t)0x08) /*!< 10-bit header sent (Master mode) */ #define I2C_SR1_BTF ((uint8_t)0x04) /*!< Byte Transfer Finished */ #define I2C_SR1_ADDR ((uint8_t)0x02) /*!< Address sent (master mode)/matched (slave mode) */ #define I2C_SR1_SB ((uint8_t)0x01) /*!< Start Bit (Master mode) */ #define I2C_SR2_SMBALERT ((uint8_t)0x80) /*!< SMBus Alert */ #define I2C_SR2_TIMEOUT ((uint8_t)0x40) /*!< Time out or TLow error */ #define I2C_SR2_WUFH ((uint8_t)0x20) /*!< Wake-up from Halt */ #define I2C_SR2_PECERR ((uint8_t)0x10) /*!< PEC error in reception */ #define I2C_SR2_OVR ((uint8_t)0x08) /*!< Overrun/Underrun */ #define I2C_SR2_AF ((uint8_t)0x04) /*!< Acknowledge Failure */ #define I2C_SR2_ARLO ((uint8_t)0x02) /*!< Arbitration Lost (master mode) */ #define I2C_SR2_BERR ((uint8_t)0x01) /*!< Bus Error */ #define I2C_SR3_DUALF ((uint8_t)0x80) /*!< Dual flag (Slave mode) */ #define I2C_SR3_SMBHOST ((uint8_t)0x40) /*!< SMBus Host Header (Slave mode) */ #define I2C_SR3_SMBDEFAULT ((uint8_t)0x20) /*!< SMBus Default Header (Slave mode) */ #define I2C_SR3_GENCALL ((uint8_t)0x10) /*!< General Call Header (Slave mode) */ #define I2C_SR3_TRA ((uint8_t)0x04) /*!< Transmitter/Receiver */ #define I2C_SR3_BUSY ((uint8_t)0x02) /*!< Bus Busy */ #define I2C_SR3_MSL ((uint8_t)0x01) /*!< Master/Slave */ #define I2C_ITR_LAST ((uint8_t)0x10) /*!< DMA Last transfer */ #define I2C_ITR_DMAEN ((uint8_t)0x08) /*!< DMA request Enable */ #define I2C_ITR_ITBUFEN ((uint8_t)0x04) /*!< Buffer Interrupt Enable */ #define I2C_ITR_ITEVTEN ((uint8_t)0x02) /*!< Event Interrupt Enable */ #define I2C_ITR_ITERREN ((uint8_t)0x01) /*!< Error Interrupt Enable */ #define I2C_CCRL_CCR ((uint8_t)0xFF) /*!< Clock Control Register (Master mode) */ #define I2C_CCRH_FS ((uint8_t)0x80) /*!< Master Mode Selection */ #define I2C_CCRH_DUTY ((uint8_t)0x40) /*!< Fast Mode Duty Cycle */ #define I2C_CCRH_CCR ((uint8_t)0x0F) /*!< Clock Control Register in Fast/Standard mode (Master mode) bits [11..8] */ #define I2C_TRISER_TRISE ((uint8_t)0x3F) /*!< Maximum Rise Time in Fast/Standard mode (Master mode) */ #define I2C_PECR_PEC ((uint8_t)0xFF) /*!< Packet error checking */ /** * @} */ /*----------------------------------------------------------------------------*/ /** * @brief IR digital interface (IRTIM) */ typedef struct IRTIM_struct { __IO uint8_t CR; /*!< control register */ } IRTIM_TypeDef; /** @addtogroup IRTIM_Registers_Reset_Value * @{ */ #define IRTIM_CR_RESET_VALUE ((uint8_t)0x00) /** * @} */ /** @addtogroup IRTIM_Registers_Bits_Definition * @{ */ /* CR*/ #define IRTIM_CR_EN ((uint8_t)0x01) /*!< IRTIM_OUT enable Mask. */ #define IRTIM_CR_HSEN ((uint8_t)0x02) /*!< High sink open drain buffer enable Mask */ /** * @} */ /*----------------------------------------------------------------------------*/ /** * @brief Interrupt Controller (ITC) */ typedef struct ITC_struct { __IO uint8_t ISPR1; /*!< Interrupt Software Priority register 1 */ __IO uint8_t ISPR2; /*!< Interrupt Software Priority register 2 */ __IO uint8_t ISPR3; /*!< Interrupt Software Priority register 3 */ __IO uint8_t ISPR4; /*!< Interrupt Software Priority register 4 */ __IO uint8_t ISPR5; /*!< Interrupt Software Priority register 5 */ __IO uint8_t ISPR6; /*!< Interrupt Software Priority register 6 */ __IO uint8_t ISPR7; /*!< Interrupt Software Priority register 7 */ __IO uint8_t ISPR8; /*!< Interrupt Software Priority register 8 */ } ITC_TypeDef; /** @addtogroup ITC_Registers_Reset_Value * @{ */ #define ITC_SPRX_RESET_VALUE ((uint8_t)0xFF) /*!< Reset value of Software Priority registers 0 to 7 */ /** * @} */ /*----------------------------------------------------------------------------*/ /** * @brief Internal Low Speed Watchdog (IWDG) */ typedef struct IWDG_struct { __IO uint8_t KR; /*!< Low Speed Watchdog Key Register */ __IO uint8_t PR; /*!< Low Speed Watchdog Prescaler Register */ __IO uint8_t RLR; /*!< Low Speed Watchdog Reload Register */ } IWDG_TypeDef; /** @addtogroup IWDG_Registers_Reset_Value * @{ */ #define IWDG_RLR_RESET_VALUE ((uint8_t)0xFF) /*! #define enableInterrupts() _rim_() /*! #define enableInterrupts() {asm("rim\n");} /* enable interrupts */ #define disableInterrupts() {asm("sim\n");} /* disable interrupts */ #define rim() {asm("rim\n");} /* enable interrupts */ #define sim() {asm("sim\n");} /* disable interrupts */ #define nop() {asm("nop\n");} /* No Operation */ #define trap() {asm("trap\n");} /* Trap (soft IT) */ #define wfi() {asm("wfi\n");} /* Wait For Interrupt */ #define wfe() {asm("wfe\n");} /* Wait for event */ #define halt() {asm("halt\n");} /* Halt */ #endif /*============================== Interrupt vector Handling ========================*/ #ifdef _COSMIC_ #define INTERRUPT_HANDLER(a,b) @far @interrupt void a(void) #define INTERRUPT_HANDLER_TRAP(a) void @far @interrupt a(void) #endif /* _COSMIC_ */ #ifdef _RAISONANCE_ #define INTERRUPT_HANDLER(a,b) void a(void) interrupt b #define INTERRUPT_HANDLER_TRAP(a) void a(void) trap #endif /* _RAISONANCE_ */ #ifdef _IAR_ #define STRINGVECTOR(x) #x #define VECTOR_ID(x) STRINGVECTOR( vector = (x) ) #define INTERRUPT_HANDLER( a, b ) \ _Pragma( VECTOR_ID( (b)+2 ) ) \ __interrupt void (a)( void ) #define INTERRUPT_HANDLER_TRAP(a) \ _Pragma( VECTOR_ID( 1 ) ) \ __interrupt void (a) (void) #endif /* _IAR_ */ /*============================== Interrupt Handler declaration ========================*/ #ifdef _COSMIC_ #define INTERRUPT @far @interrupt #elif defined(_IAR_) #define INTERRUPT __interrupt #endif /* _COSMIC_ */ /*============================== Handling bits ====================================*/ /*----------------------------------------------------------------------------- Method : I Description : Handle the bit from the character variables. Comments : The different parameters of commands are - VAR : Name of the character variable where the bit is located. - Place : Bit position in the variable (7 6 5 4 3 2 1 0) - Value : Can be 0 (reset bit) or not 0 (set bit) The "MskBit" command allows to select some bits in a source variables and copy it in a destination var (return the value). The "ValBit" command returns the value of a bit in a char variable: the bit is reseted if it returns 0 else the bit is set. This method generates not an optimised code yet. -----------------------------------------------------------------------------*/ #define SetBit(VAR,Place) ( (VAR) |= (uint8_t)((uint8_t)1<<(uint8_t)(Place)) ) #define ClrBit(VAR,Place) ( (VAR) &= (uint8_t)((uint8_t)((uint8_t)1<<(uint8_t)(Place))^(uint8_t)255) ) #define ChgBit(VAR,Place) ( (VAR) ^= (uint8_t)((uint8_t)1<<(uint8_t)(Place)) ) #define AffBit(VAR,Place,Value) ((Value) ? \ ((VAR) |= ((uint8_t)1<<(Place))) : \ ((VAR) &= (((uint8_t)1<<(Place))^(uint8_t)255))) #define MskBit(Dest,Msk,Src) ( (Dest) = ((Msk) & (Src)) | ((~(Msk)) & (Dest)) ) #define ValBit(VAR,Place) ((uint8_t)(VAR) & (uint8_t)((uint8_t)1<<(uint8_t)(Place))) #define BYTE_0(n) ((uint8_t)((n) & (uint8_t)0xFF)) /*!< Returns the low byte of the 32-bit value */ #define BYTE_1(n) ((uint8_t)(BYTE_0((n) >> (uint8_t)8))) /*!< Returns the second byte of the 32-bit value */ #define BYTE_2(n) ((uint8_t)(BYTE_0((n) >> (uint8_t)16))) /*!< Returns the third byte of the 32-bit value */ #define BYTE_3(n) ((uint8_t)(BYTE_0((n) >> (uint8_t)24))) /*!< Returns the high byte of the 32-bit value */ /*============================== Assert Macros ====================================*/ #define IS_STATE_VALUE(STATE) \ (((STATE) == SET) || \ ((STATE) == RESET)) /*----------------------------------------------------------------------------- Method : II Description : Handle directly the bit. Comments : The idea is to handle directly with the bit name. For that, it is necessary to have RAM area descriptions (example: HW register...) and the following command line for each area. This method generates the most optimized code. -----------------------------------------------------------------------------*/ #define AREA 0x00 /* The area of bits begins at address 0x10. */ #define BitClr(BIT) ( *((unsigned char *) (AREA+(BIT)/8)) &= (~(1<<(7-(BIT)%8))) ) #define BitSet(BIT) ( *((unsigned char *) (AREA+(BIT)/8)) |= (1<<(7-(BIT)%8)) ) #define BitVal(BIT) ( *((unsigned char *) (AREA+(BIT)/8)) & (1<<(7-(BIT)%8)) ) #endif /* __STM8L15x_H */ /** * @} */ /** * @} */ /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/