Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2 | Rev 5 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /** |
1 | /** |
2 | ****************************************************************************** |
2 | ****************************************************************************** |
3 | * @file stm32f101xe.h |
3 | * @file stm32f101xe.h |
4 | * @author MCD Application Team |
4 | * @author MCD Application Team |
5 | * @version V4.0.1 |
5 | * @version V4.1.0 |
6 | * @date 31-July-2015 |
6 | * @date 29-April-2016 |
7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer Header File. |
7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer Header File. |
8 | * This file contains all the peripheral register's definitions, bits |
8 | * This file contains all the peripheral register's definitions, bits |
9 | * definitions and memory mapping for STM32F1xx devices. |
9 | * definitions and memory mapping for STM32F1xx devices. |
10 | * |
10 | * |
11 | * This file contains: |
11 | * This file contains: |
Line 14... | Line 14... | ||
14 | * - Macros to access peripheralÂ’s registers hardware |
14 | * - Macros to access peripheralÂ’s registers hardware |
15 | * |
15 | * |
16 | ****************************************************************************** |
16 | ****************************************************************************** |
17 | * @attention |
17 | * @attention |
18 | * |
18 | * |
19 | * <h2><center>© COPYRIGHT(c) 2015 STMicroelectronics</center></h2> |
19 | * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2> |
20 | * |
20 | * |
21 | * Redistribution and use in source and binary forms, with or without modification, |
21 | * Redistribution and use in source and binary forms, with or without modification, |
22 | * are permitted provided that the following conditions are met: |
22 | * are permitted provided that the following conditions are met: |
23 | * 1. Redistributions of source code must retain the above copyright notice, |
23 | * 1. Redistributions of source code must retain the above copyright notice, |
24 | * this list of conditions and the following disclaimer. |
24 | * this list of conditions and the following disclaimer. |
Line 86... | Line 86... | ||
86 | /*!< Interrupt Number Definition */ |
86 | /*!< Interrupt Number Definition */ |
87 | typedef enum |
87 | typedef enum |
88 | { |
88 | { |
89 | /****** Cortex-M3 Processor Exceptions Numbers ***************************************************/ |
89 | /****** Cortex-M3 Processor Exceptions Numbers ***************************************************/ |
90 | NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */ |
90 | NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */ |
- | 91 | HardFault_IRQn = -13, /*!< 3 Cortex-M3 Hard Fault Interrupt */ |
|
91 | MemoryManagement_IRQn = -12, /*!< 4 Cortex-M3 Memory Management Interrupt */ |
92 | MemoryManagement_IRQn = -12, /*!< 4 Cortex-M3 Memory Management Interrupt */ |
92 | BusFault_IRQn = -11, /*!< 5 Cortex-M3 Bus Fault Interrupt */ |
93 | BusFault_IRQn = -11, /*!< 5 Cortex-M3 Bus Fault Interrupt */ |
93 | UsageFault_IRQn = -10, /*!< 6 Cortex-M3 Usage Fault Interrupt */ |
94 | UsageFault_IRQn = -10, /*!< 6 Cortex-M3 Usage Fault Interrupt */ |
94 | SVCall_IRQn = -5, /*!< 11 Cortex-M3 SV Call Interrupt */ |
95 | SVCall_IRQn = -5, /*!< 11 Cortex-M3 SV Call Interrupt */ |
95 | DebugMonitor_IRQn = -4, /*!< 12 Cortex-M3 Debug Monitor Interrupt */ |
96 | DebugMonitor_IRQn = -4, /*!< 12 Cortex-M3 Debug Monitor Interrupt */ |
Line 183... | Line 184... | ||
183 | __IO uint32_t JDR3; |
184 | __IO uint32_t JDR3; |
184 | __IO uint32_t JDR4; |
185 | __IO uint32_t JDR4; |
185 | __IO uint32_t DR; |
186 | __IO uint32_t DR; |
186 | } ADC_TypeDef; |
187 | } ADC_TypeDef; |
187 | 188 | ||
- | 189 | typedef struct |
|
- | 190 | { |
|
- | 191 | __IO uint32_t SR; /*!< ADC status register, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address */ |
|
- | 192 | __IO uint32_t CR1; /*!< ADC control register 1, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x04 */ |
|
- | 193 | __IO uint32_t CR2; /*!< ADC control register 2, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x08 */ |
|
- | 194 | uint32_t RESERVED[16]; |
|
- | 195 | __IO uint32_t DR; /*!< ADC data register, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x4C */ |
|
- | 196 | } ADC_Common_TypeDef; |
|
- | 197 | ||
188 | /** |
198 | /** |
189 | * @brief Backup Registers |
199 | * @brief Backup Registers |
190 | */ |
200 | */ |
191 | 201 | ||
192 | typedef struct |
202 | typedef struct |
Line 686... | Line 696... | ||
686 | #define DMA2_Channel5_BASE (AHBPERIPH_BASE + 0x0458) |
696 | #define DMA2_Channel5_BASE (AHBPERIPH_BASE + 0x0458) |
687 | #define RCC_BASE (AHBPERIPH_BASE + 0x1000) |
697 | #define RCC_BASE (AHBPERIPH_BASE + 0x1000) |
688 | #define CRC_BASE (AHBPERIPH_BASE + 0x3000) |
698 | #define CRC_BASE (AHBPERIPH_BASE + 0x3000) |
689 | 699 | ||
690 | #define FLASH_R_BASE (AHBPERIPH_BASE + 0x2000) /*!< Flash registers base address */ |
700 | #define FLASH_R_BASE (AHBPERIPH_BASE + 0x2000) /*!< Flash registers base address */ |
- | 701 | #define FLASHSIZE_BASE ((uint32_t)0x1FFFF7E0) /*!< FLASH Size register base address */ |
|
- | 702 | #define UID_BASE ((uint32_t)0x1FFFF7E8) /*!< Unique device ID register base address */ |
|
691 | #define OB_BASE ((uint32_t)0x1FFFF800) /*!< Flash Option Bytes base address */ |
703 | #define OB_BASE ((uint32_t)0x1FFFF800) /*!< Flash Option Bytes base address */ |
692 | 704 | ||
693 | 705 | ||
694 | #define FSMC_BANK1 (FSMC_BASE) /*!< FSMC Bank1 base address */ |
706 | #define FSMC_BANK1 (FSMC_BASE) /*!< FSMC Bank1 base address */ |
695 | #define FSMC_BANK1_1 (FSMC_BANK1) /*!< FSMC Bank1_1 base address */ |
707 | #define FSMC_BANK1_1 (FSMC_BANK1) /*!< FSMC Bank1_1 base address */ |
Line 746... | Line 758... | ||
746 | #define GPIOD ((GPIO_TypeDef *) GPIOD_BASE) |
758 | #define GPIOD ((GPIO_TypeDef *) GPIOD_BASE) |
747 | #define GPIOE ((GPIO_TypeDef *) GPIOE_BASE) |
759 | #define GPIOE ((GPIO_TypeDef *) GPIOE_BASE) |
748 | #define GPIOF ((GPIO_TypeDef *) GPIOF_BASE) |
760 | #define GPIOF ((GPIO_TypeDef *) GPIOF_BASE) |
749 | #define GPIOG ((GPIO_TypeDef *) GPIOG_BASE) |
761 | #define GPIOG ((GPIO_TypeDef *) GPIOG_BASE) |
750 | #define ADC1 ((ADC_TypeDef *) ADC1_BASE) |
762 | #define ADC1 ((ADC_TypeDef *) ADC1_BASE) |
- | 763 | #define ADC1_COMMON ((ADC_Common_TypeDef *) ADC1_BASE) |
|
751 | #define SPI1 ((SPI_TypeDef *) SPI1_BASE) |
764 | #define SPI1 ((SPI_TypeDef *) SPI1_BASE) |
752 | #define USART1 ((USART_TypeDef *) USART1_BASE) |
765 | #define USART1 ((USART_TypeDef *) USART1_BASE) |
753 | #define SDIO ((SDIO_TypeDef *) SDIO_BASE) |
766 | #define SDIO ((SDIO_TypeDef *) SDIO_BASE) |
754 | #define DMA1 ((DMA_TypeDef *) DMA1_BASE) |
767 | #define DMA1 ((DMA_TypeDef *) DMA1_BASE) |
755 | #define DMA2 ((DMA_TypeDef *) DMA2_BASE) |
768 | #define DMA2 ((DMA_TypeDef *) DMA2_BASE) |
Line 797... | Line 810... | ||
797 | /* CRC calculation unit (CRC) */ |
810 | /* CRC calculation unit (CRC) */ |
798 | /* */ |
811 | /* */ |
799 | /******************************************************************************/ |
812 | /******************************************************************************/ |
800 | 813 | ||
801 | /******************* Bit definition for CRC_DR register *********************/ |
814 | /******************* Bit definition for CRC_DR register *********************/ |
- | 815 | #define CRC_DR_DR_Pos (0U) |
|
- | 816 | #define CRC_DR_DR_Msk (0xFFFFFFFFU << CRC_DR_DR_Pos) /*!< 0xFFFFFFFF */ |
|
802 | #define CRC_DR_DR ((uint32_t)0xFFFFFFFF) /*!< Data register bits */ |
817 | #define CRC_DR_DR CRC_DR_DR_Msk /*!< Data register bits */ |
803 | 818 | ||
804 | /******************* Bit definition for CRC_IDR register ********************/ |
819 | /******************* Bit definition for CRC_IDR register ********************/ |
- | 820 | #define CRC_IDR_IDR_Pos (0U) |
|
- | 821 | #define CRC_IDR_IDR_Msk (0xFFU << CRC_IDR_IDR_Pos) /*!< 0x000000FF */ |
|
805 | #define CRC_IDR_IDR ((uint32_t)0xFF) /*!< General-purpose 8-bit data register bits */ |
822 | #define CRC_IDR_IDR CRC_IDR_IDR_Msk /*!< General-purpose 8-bit data register bits */ |
806 | 823 | ||
807 | /******************** Bit definition for CRC_CR register ********************/ |
824 | /******************** Bit definition for CRC_CR register ********************/ |
- | 825 | #define CRC_CR_RESET_Pos (0U) |
|
- | 826 | #define CRC_CR_RESET_Msk (0x1U << CRC_CR_RESET_Pos) /*!< 0x00000001 */ |
|
808 | #define CRC_CR_RESET ((uint32_t)0x00000001) /*!< RESET bit */ |
827 | #define CRC_CR_RESET CRC_CR_RESET_Msk /*!< RESET bit */ |
809 | 828 | ||
810 | /******************************************************************************/ |
829 | /******************************************************************************/ |
811 | /* */ |
830 | /* */ |
812 | /* Power Control */ |
831 | /* Power Control */ |
813 | /* */ |
832 | /* */ |
814 | /******************************************************************************/ |
833 | /******************************************************************************/ |
815 | 834 | ||
816 | /******************** Bit definition for PWR_CR register ********************/ |
835 | /******************** Bit definition for PWR_CR register ********************/ |
- | 836 | #define PWR_CR_LPDS_Pos (0U) |
|
- | 837 | #define PWR_CR_LPDS_Msk (0x1U << PWR_CR_LPDS_Pos) /*!< 0x00000001 */ |
|
817 | #define PWR_CR_LPDS ((uint32_t)0x00000001) /*!< Low-Power Deepsleep */ |
838 | #define PWR_CR_LPDS PWR_CR_LPDS_Msk /*!< Low-Power Deepsleep */ |
- | 839 | #define PWR_CR_PDDS_Pos (1U) |
|
- | 840 | #define PWR_CR_PDDS_Msk (0x1U << PWR_CR_PDDS_Pos) /*!< 0x00000002 */ |
|
818 | #define PWR_CR_PDDS ((uint32_t)0x00000002) /*!< Power Down Deepsleep */ |
841 | #define PWR_CR_PDDS PWR_CR_PDDS_Msk /*!< Power Down Deepsleep */ |
- | 842 | #define PWR_CR_CWUF_Pos (2U) |
|
- | 843 | #define PWR_CR_CWUF_Msk (0x1U << PWR_CR_CWUF_Pos) /*!< 0x00000004 */ |
|
819 | #define PWR_CR_CWUF ((uint32_t)0x00000004) /*!< Clear Wakeup Flag */ |
844 | #define PWR_CR_CWUF PWR_CR_CWUF_Msk /*!< Clear Wakeup Flag */ |
- | 845 | #define PWR_CR_CSBF_Pos (3U) |
|
- | 846 | #define PWR_CR_CSBF_Msk (0x1U << PWR_CR_CSBF_Pos) /*!< 0x00000008 */ |
|
820 | #define PWR_CR_CSBF ((uint32_t)0x00000008) /*!< Clear Standby Flag */ |
847 | #define PWR_CR_CSBF PWR_CR_CSBF_Msk /*!< Clear Standby Flag */ |
- | 848 | #define PWR_CR_PVDE_Pos (4U) |
|
- | 849 | #define PWR_CR_PVDE_Msk (0x1U << PWR_CR_PVDE_Pos) /*!< 0x00000010 */ |
|
821 | #define PWR_CR_PVDE ((uint32_t)0x00000010) /*!< Power Voltage Detector Enable */ |
850 | #define PWR_CR_PVDE PWR_CR_PVDE_Msk /*!< Power Voltage Detector Enable */ |
822 | 851 | ||
- | 852 | #define PWR_CR_PLS_Pos (5U) |
|
- | 853 | #define PWR_CR_PLS_Msk (0x7U << PWR_CR_PLS_Pos) /*!< 0x000000E0 */ |
|
823 | #define PWR_CR_PLS ((uint32_t)0x000000E0) /*!< PLS[2:0] bits (PVD Level Selection) */ |
854 | #define PWR_CR_PLS PWR_CR_PLS_Msk /*!< PLS[2:0] bits (PVD Level Selection) */ |
824 | #define PWR_CR_PLS_0 ((uint32_t)0x00000020) /*!< Bit 0 */ |
855 | #define PWR_CR_PLS_0 (0x1U << PWR_CR_PLS_Pos) /*!< 0x00000020 */ |
825 | #define PWR_CR_PLS_1 ((uint32_t)0x00000040) /*!< Bit 1 */ |
856 | #define PWR_CR_PLS_1 (0x2U << PWR_CR_PLS_Pos) /*!< 0x00000040 */ |
826 | #define PWR_CR_PLS_2 ((uint32_t)0x00000080) /*!< Bit 2 */ |
857 | #define PWR_CR_PLS_2 (0x4U << PWR_CR_PLS_Pos) /*!< 0x00000080 */ |
827 | 858 | ||
828 | /*!< PVD level configuration */ |
859 | /*!< PVD level configuration */ |
829 | #define PWR_CR_PLS_2V2 ((uint32_t)0x00000000) /*!< PVD level 2.2V */ |
860 | #define PWR_CR_PLS_2V2 ((uint32_t)0x00000000) /*!< PVD level 2.2V */ |
830 | #define PWR_CR_PLS_2V3 ((uint32_t)0x00000020) /*!< PVD level 2.3V */ |
861 | #define PWR_CR_PLS_2V3 ((uint32_t)0x00000020) /*!< PVD level 2.3V */ |
831 | #define PWR_CR_PLS_2V4 ((uint32_t)0x00000040) /*!< PVD level 2.4V */ |
862 | #define PWR_CR_PLS_2V4 ((uint32_t)0x00000040) /*!< PVD level 2.4V */ |
832 | #define PWR_CR_PLS_2V5 ((uint32_t)0x00000060) /*!< PVD level 2.5V */ |
863 | #define PWR_CR_PLS_2V5 ((uint32_t)0x00000060) /*!< PVD level 2.5V */ |
833 | #define PWR_CR_PLS_2V6 ((uint32_t)0x00000080) /*!< PVD level 2.6V */ |
864 | #define PWR_CR_PLS_2V6 ((uint32_t)0x00000080) /*!< PVD level 2.6V */ |
834 | #define PWR_CR_PLS_2V7 ((uint32_t)0x000000A0) /*!< PVD level 2.7V */ |
865 | #define PWR_CR_PLS_2V7 ((uint32_t)0x000000A0) /*!< PVD level 2.7V */ |
835 | #define PWR_CR_PLS_2V8 ((uint32_t)0x000000C0) /*!< PVD level 2.8V */ |
866 | #define PWR_CR_PLS_2V8 ((uint32_t)0x000000C0) /*!< PVD level 2.8V */ |
836 | #define PWR_CR_PLS_2V9 ((uint32_t)0x000000E0) /*!< PVD level 2.9V */ |
867 | #define PWR_CR_PLS_2V9 ((uint32_t)0x000000E0) /*!< PVD level 2.9V */ |
837 | 868 | ||
- | 869 | #define PWR_CR_DBP_Pos (8U) |
|
- | 870 | #define PWR_CR_DBP_Msk (0x1U << PWR_CR_DBP_Pos) /*!< 0x00000100 */ |
|
838 | #define PWR_CR_DBP ((uint32_t)0x00000100) /*!< Disable Backup Domain write protection */ |
871 | #define PWR_CR_DBP PWR_CR_DBP_Msk /*!< Disable Backup Domain write protection */ |
839 | 872 | ||
840 | 873 | ||
841 | /******************* Bit definition for PWR_CSR register ********************/ |
874 | /******************* Bit definition for PWR_CSR register ********************/ |
- | 875 | #define PWR_CSR_WUF_Pos (0U) |
|
- | 876 | #define PWR_CSR_WUF_Msk (0x1U << PWR_CSR_WUF_Pos) /*!< 0x00000001 */ |
|
842 | #define PWR_CSR_WUF ((uint32_t)0x00000001) /*!< Wakeup Flag */ |
877 | #define PWR_CSR_WUF PWR_CSR_WUF_Msk /*!< Wakeup Flag */ |
- | 878 | #define PWR_CSR_SBF_Pos (1U) |
|
- | 879 | #define PWR_CSR_SBF_Msk (0x1U << PWR_CSR_SBF_Pos) /*!< 0x00000002 */ |
|
843 | #define PWR_CSR_SBF ((uint32_t)0x00000002) /*!< Standby Flag */ |
880 | #define PWR_CSR_SBF PWR_CSR_SBF_Msk /*!< Standby Flag */ |
- | 881 | #define PWR_CSR_PVDO_Pos (2U) |
|
- | 882 | #define PWR_CSR_PVDO_Msk (0x1U << PWR_CSR_PVDO_Pos) /*!< 0x00000004 */ |
|
844 | #define PWR_CSR_PVDO ((uint32_t)0x00000004) /*!< PVD Output */ |
883 | #define PWR_CSR_PVDO PWR_CSR_PVDO_Msk /*!< PVD Output */ |
- | 884 | #define PWR_CSR_EWUP_Pos (8U) |
|
- | 885 | #define PWR_CSR_EWUP_Msk (0x1U << PWR_CSR_EWUP_Pos) /*!< 0x00000100 */ |
|
845 | #define PWR_CSR_EWUP ((uint32_t)0x00000100) /*!< Enable WKUP pin */ |
886 | #define PWR_CSR_EWUP PWR_CSR_EWUP_Msk /*!< Enable WKUP pin */ |
846 | 887 | ||
847 | /******************************************************************************/ |
888 | /******************************************************************************/ |
848 | /* */ |
889 | /* */ |
849 | /* Backup registers */ |
890 | /* Backup registers */ |
850 | /* */ |
891 | /* */ |
851 | /******************************************************************************/ |
892 | /******************************************************************************/ |
852 | 893 | ||
853 | /******************* Bit definition for BKP_DR1 register ********************/ |
894 | /******************* Bit definition for BKP_DR1 register ********************/ |
- | 895 | #define BKP_DR1_D_Pos (0U) |
|
- | 896 | #define BKP_DR1_D_Msk (0xFFFFU << BKP_DR1_D_Pos) /*!< 0x0000FFFF */ |
|
854 | #define BKP_DR1_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
897 | #define BKP_DR1_D BKP_DR1_D_Msk /*!< Backup data */ |
855 | 898 | ||
856 | /******************* Bit definition for BKP_DR2 register ********************/ |
899 | /******************* Bit definition for BKP_DR2 register ********************/ |
- | 900 | #define BKP_DR2_D_Pos (0U) |
|
- | 901 | #define BKP_DR2_D_Msk (0xFFFFU << BKP_DR2_D_Pos) /*!< 0x0000FFFF */ |
|
857 | #define BKP_DR2_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
902 | #define BKP_DR2_D BKP_DR2_D_Msk /*!< Backup data */ |
858 | 903 | ||
859 | /******************* Bit definition for BKP_DR3 register ********************/ |
904 | /******************* Bit definition for BKP_DR3 register ********************/ |
- | 905 | #define BKP_DR3_D_Pos (0U) |
|
- | 906 | #define BKP_DR3_D_Msk (0xFFFFU << BKP_DR3_D_Pos) /*!< 0x0000FFFF */ |
|
860 | #define BKP_DR3_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
907 | #define BKP_DR3_D BKP_DR3_D_Msk /*!< Backup data */ |
861 | 908 | ||
862 | /******************* Bit definition for BKP_DR4 register ********************/ |
909 | /******************* Bit definition for BKP_DR4 register ********************/ |
- | 910 | #define BKP_DR4_D_Pos (0U) |
|
- | 911 | #define BKP_DR4_D_Msk (0xFFFFU << BKP_DR4_D_Pos) /*!< 0x0000FFFF */ |
|
863 | #define BKP_DR4_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
912 | #define BKP_DR4_D BKP_DR4_D_Msk /*!< Backup data */ |
864 | 913 | ||
865 | /******************* Bit definition for BKP_DR5 register ********************/ |
914 | /******************* Bit definition for BKP_DR5 register ********************/ |
- | 915 | #define BKP_DR5_D_Pos (0U) |
|
- | 916 | #define BKP_DR5_D_Msk (0xFFFFU << BKP_DR5_D_Pos) /*!< 0x0000FFFF */ |
|
866 | #define BKP_DR5_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
917 | #define BKP_DR5_D BKP_DR5_D_Msk /*!< Backup data */ |
867 | 918 | ||
868 | /******************* Bit definition for BKP_DR6 register ********************/ |
919 | /******************* Bit definition for BKP_DR6 register ********************/ |
- | 920 | #define BKP_DR6_D_Pos (0U) |
|
- | 921 | #define BKP_DR6_D_Msk (0xFFFFU << BKP_DR6_D_Pos) /*!< 0x0000FFFF */ |
|
869 | #define BKP_DR6_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
922 | #define BKP_DR6_D BKP_DR6_D_Msk /*!< Backup data */ |
870 | 923 | ||
871 | /******************* Bit definition for BKP_DR7 register ********************/ |
924 | /******************* Bit definition for BKP_DR7 register ********************/ |
- | 925 | #define BKP_DR7_D_Pos (0U) |
|
- | 926 | #define BKP_DR7_D_Msk (0xFFFFU << BKP_DR7_D_Pos) /*!< 0x0000FFFF */ |
|
872 | #define BKP_DR7_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
927 | #define BKP_DR7_D BKP_DR7_D_Msk /*!< Backup data */ |
873 | 928 | ||
874 | /******************* Bit definition for BKP_DR8 register ********************/ |
929 | /******************* Bit definition for BKP_DR8 register ********************/ |
- | 930 | #define BKP_DR8_D_Pos (0U) |
|
- | 931 | #define BKP_DR8_D_Msk (0xFFFFU << BKP_DR8_D_Pos) /*!< 0x0000FFFF */ |
|
875 | #define BKP_DR8_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
932 | #define BKP_DR8_D BKP_DR8_D_Msk /*!< Backup data */ |
876 | 933 | ||
877 | /******************* Bit definition for BKP_DR9 register ********************/ |
934 | /******************* Bit definition for BKP_DR9 register ********************/ |
- | 935 | #define BKP_DR9_D_Pos (0U) |
|
- | 936 | #define BKP_DR9_D_Msk (0xFFFFU << BKP_DR9_D_Pos) /*!< 0x0000FFFF */ |
|
878 | #define BKP_DR9_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
937 | #define BKP_DR9_D BKP_DR9_D_Msk /*!< Backup data */ |
879 | 938 | ||
880 | /******************* Bit definition for BKP_DR10 register *******************/ |
939 | /******************* Bit definition for BKP_DR10 register *******************/ |
- | 940 | #define BKP_DR10_D_Pos (0U) |
|
- | 941 | #define BKP_DR10_D_Msk (0xFFFFU << BKP_DR10_D_Pos) /*!< 0x0000FFFF */ |
|
881 | #define BKP_DR10_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
942 | #define BKP_DR10_D BKP_DR10_D_Msk /*!< Backup data */ |
882 | 943 | ||
883 | /******************* Bit definition for BKP_DR11 register *******************/ |
944 | /******************* Bit definition for BKP_DR11 register *******************/ |
- | 945 | #define BKP_DR11_D_Pos (0U) |
|
- | 946 | #define BKP_DR11_D_Msk (0xFFFFU << BKP_DR11_D_Pos) /*!< 0x0000FFFF */ |
|
884 | #define BKP_DR11_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
947 | #define BKP_DR11_D BKP_DR11_D_Msk /*!< Backup data */ |
885 | 948 | ||
886 | /******************* Bit definition for BKP_DR12 register *******************/ |
949 | /******************* Bit definition for BKP_DR12 register *******************/ |
- | 950 | #define BKP_DR12_D_Pos (0U) |
|
- | 951 | #define BKP_DR12_D_Msk (0xFFFFU << BKP_DR12_D_Pos) /*!< 0x0000FFFF */ |
|
887 | #define BKP_DR12_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
952 | #define BKP_DR12_D BKP_DR12_D_Msk /*!< Backup data */ |
888 | 953 | ||
889 | /******************* Bit definition for BKP_DR13 register *******************/ |
954 | /******************* Bit definition for BKP_DR13 register *******************/ |
- | 955 | #define BKP_DR13_D_Pos (0U) |
|
- | 956 | #define BKP_DR13_D_Msk (0xFFFFU << BKP_DR13_D_Pos) /*!< 0x0000FFFF */ |
|
890 | #define BKP_DR13_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
957 | #define BKP_DR13_D BKP_DR13_D_Msk /*!< Backup data */ |
891 | 958 | ||
892 | /******************* Bit definition for BKP_DR14 register *******************/ |
959 | /******************* Bit definition for BKP_DR14 register *******************/ |
- | 960 | #define BKP_DR14_D_Pos (0U) |
|
- | 961 | #define BKP_DR14_D_Msk (0xFFFFU << BKP_DR14_D_Pos) /*!< 0x0000FFFF */ |
|
893 | #define BKP_DR14_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
962 | #define BKP_DR14_D BKP_DR14_D_Msk /*!< Backup data */ |
894 | 963 | ||
895 | /******************* Bit definition for BKP_DR15 register *******************/ |
964 | /******************* Bit definition for BKP_DR15 register *******************/ |
- | 965 | #define BKP_DR15_D_Pos (0U) |
|
- | 966 | #define BKP_DR15_D_Msk (0xFFFFU << BKP_DR15_D_Pos) /*!< 0x0000FFFF */ |
|
896 | #define BKP_DR15_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
967 | #define BKP_DR15_D BKP_DR15_D_Msk /*!< Backup data */ |
897 | 968 | ||
898 | /******************* Bit definition for BKP_DR16 register *******************/ |
969 | /******************* Bit definition for BKP_DR16 register *******************/ |
- | 970 | #define BKP_DR16_D_Pos (0U) |
|
- | 971 | #define BKP_DR16_D_Msk (0xFFFFU << BKP_DR16_D_Pos) /*!< 0x0000FFFF */ |
|
899 | #define BKP_DR16_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
972 | #define BKP_DR16_D BKP_DR16_D_Msk /*!< Backup data */ |
900 | 973 | ||
901 | /******************* Bit definition for BKP_DR17 register *******************/ |
974 | /******************* Bit definition for BKP_DR17 register *******************/ |
- | 975 | #define BKP_DR17_D_Pos (0U) |
|
- | 976 | #define BKP_DR17_D_Msk (0xFFFFU << BKP_DR17_D_Pos) /*!< 0x0000FFFF */ |
|
902 | #define BKP_DR17_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
977 | #define BKP_DR17_D BKP_DR17_D_Msk /*!< Backup data */ |
903 | 978 | ||
904 | /****************** Bit definition for BKP_DR18 register ********************/ |
979 | /****************** Bit definition for BKP_DR18 register ********************/ |
- | 980 | #define BKP_DR18_D_Pos (0U) |
|
- | 981 | #define BKP_DR18_D_Msk (0xFFFFU << BKP_DR18_D_Pos) /*!< 0x0000FFFF */ |
|
905 | #define BKP_DR18_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
982 | #define BKP_DR18_D BKP_DR18_D_Msk /*!< Backup data */ |
906 | 983 | ||
907 | /******************* Bit definition for BKP_DR19 register *******************/ |
984 | /******************* Bit definition for BKP_DR19 register *******************/ |
- | 985 | #define BKP_DR19_D_Pos (0U) |
|
- | 986 | #define BKP_DR19_D_Msk (0xFFFFU << BKP_DR19_D_Pos) /*!< 0x0000FFFF */ |
|
908 | #define BKP_DR19_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
987 | #define BKP_DR19_D BKP_DR19_D_Msk /*!< Backup data */ |
909 | 988 | ||
910 | /******************* Bit definition for BKP_DR20 register *******************/ |
989 | /******************* Bit definition for BKP_DR20 register *******************/ |
- | 990 | #define BKP_DR20_D_Pos (0U) |
|
- | 991 | #define BKP_DR20_D_Msk (0xFFFFU << BKP_DR20_D_Pos) /*!< 0x0000FFFF */ |
|
911 | #define BKP_DR20_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
992 | #define BKP_DR20_D BKP_DR20_D_Msk /*!< Backup data */ |
912 | 993 | ||
913 | /******************* Bit definition for BKP_DR21 register *******************/ |
994 | /******************* Bit definition for BKP_DR21 register *******************/ |
- | 995 | #define BKP_DR21_D_Pos (0U) |
|
- | 996 | #define BKP_DR21_D_Msk (0xFFFFU << BKP_DR21_D_Pos) /*!< 0x0000FFFF */ |
|
914 | #define BKP_DR21_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
997 | #define BKP_DR21_D BKP_DR21_D_Msk /*!< Backup data */ |
915 | 998 | ||
916 | /******************* Bit definition for BKP_DR22 register *******************/ |
999 | /******************* Bit definition for BKP_DR22 register *******************/ |
- | 1000 | #define BKP_DR22_D_Pos (0U) |
|
- | 1001 | #define BKP_DR22_D_Msk (0xFFFFU << BKP_DR22_D_Pos) /*!< 0x0000FFFF */ |
|
917 | #define BKP_DR22_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1002 | #define BKP_DR22_D BKP_DR22_D_Msk /*!< Backup data */ |
918 | 1003 | ||
919 | /******************* Bit definition for BKP_DR23 register *******************/ |
1004 | /******************* Bit definition for BKP_DR23 register *******************/ |
- | 1005 | #define BKP_DR23_D_Pos (0U) |
|
- | 1006 | #define BKP_DR23_D_Msk (0xFFFFU << BKP_DR23_D_Pos) /*!< 0x0000FFFF */ |
|
920 | #define BKP_DR23_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1007 | #define BKP_DR23_D BKP_DR23_D_Msk /*!< Backup data */ |
921 | 1008 | ||
922 | /******************* Bit definition for BKP_DR24 register *******************/ |
1009 | /******************* Bit definition for BKP_DR24 register *******************/ |
- | 1010 | #define BKP_DR24_D_Pos (0U) |
|
- | 1011 | #define BKP_DR24_D_Msk (0xFFFFU << BKP_DR24_D_Pos) /*!< 0x0000FFFF */ |
|
923 | #define BKP_DR24_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1012 | #define BKP_DR24_D BKP_DR24_D_Msk /*!< Backup data */ |
924 | 1013 | ||
925 | /******************* Bit definition for BKP_DR25 register *******************/ |
1014 | /******************* Bit definition for BKP_DR25 register *******************/ |
- | 1015 | #define BKP_DR25_D_Pos (0U) |
|
- | 1016 | #define BKP_DR25_D_Msk (0xFFFFU << BKP_DR25_D_Pos) /*!< 0x0000FFFF */ |
|
926 | #define BKP_DR25_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1017 | #define BKP_DR25_D BKP_DR25_D_Msk /*!< Backup data */ |
927 | 1018 | ||
928 | /******************* Bit definition for BKP_DR26 register *******************/ |
1019 | /******************* Bit definition for BKP_DR26 register *******************/ |
- | 1020 | #define BKP_DR26_D_Pos (0U) |
|
- | 1021 | #define BKP_DR26_D_Msk (0xFFFFU << BKP_DR26_D_Pos) /*!< 0x0000FFFF */ |
|
929 | #define BKP_DR26_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1022 | #define BKP_DR26_D BKP_DR26_D_Msk /*!< Backup data */ |
930 | 1023 | ||
931 | /******************* Bit definition for BKP_DR27 register *******************/ |
1024 | /******************* Bit definition for BKP_DR27 register *******************/ |
- | 1025 | #define BKP_DR27_D_Pos (0U) |
|
- | 1026 | #define BKP_DR27_D_Msk (0xFFFFU << BKP_DR27_D_Pos) /*!< 0x0000FFFF */ |
|
932 | #define BKP_DR27_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1027 | #define BKP_DR27_D BKP_DR27_D_Msk /*!< Backup data */ |
933 | 1028 | ||
934 | /******************* Bit definition for BKP_DR28 register *******************/ |
1029 | /******************* Bit definition for BKP_DR28 register *******************/ |
- | 1030 | #define BKP_DR28_D_Pos (0U) |
|
- | 1031 | #define BKP_DR28_D_Msk (0xFFFFU << BKP_DR28_D_Pos) /*!< 0x0000FFFF */ |
|
935 | #define BKP_DR28_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1032 | #define BKP_DR28_D BKP_DR28_D_Msk /*!< Backup data */ |
936 | 1033 | ||
937 | /******************* Bit definition for BKP_DR29 register *******************/ |
1034 | /******************* Bit definition for BKP_DR29 register *******************/ |
- | 1035 | #define BKP_DR29_D_Pos (0U) |
|
- | 1036 | #define BKP_DR29_D_Msk (0xFFFFU << BKP_DR29_D_Pos) /*!< 0x0000FFFF */ |
|
938 | #define BKP_DR29_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1037 | #define BKP_DR29_D BKP_DR29_D_Msk /*!< Backup data */ |
939 | 1038 | ||
940 | /******************* Bit definition for BKP_DR30 register *******************/ |
1039 | /******************* Bit definition for BKP_DR30 register *******************/ |
- | 1040 | #define BKP_DR30_D_Pos (0U) |
|
- | 1041 | #define BKP_DR30_D_Msk (0xFFFFU << BKP_DR30_D_Pos) /*!< 0x0000FFFF */ |
|
941 | #define BKP_DR30_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1042 | #define BKP_DR30_D BKP_DR30_D_Msk /*!< Backup data */ |
942 | 1043 | ||
943 | /******************* Bit definition for BKP_DR31 register *******************/ |
1044 | /******************* Bit definition for BKP_DR31 register *******************/ |
- | 1045 | #define BKP_DR31_D_Pos (0U) |
|
- | 1046 | #define BKP_DR31_D_Msk (0xFFFFU << BKP_DR31_D_Pos) /*!< 0x0000FFFF */ |
|
944 | #define BKP_DR31_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1047 | #define BKP_DR31_D BKP_DR31_D_Msk /*!< Backup data */ |
945 | 1048 | ||
946 | /******************* Bit definition for BKP_DR32 register *******************/ |
1049 | /******************* Bit definition for BKP_DR32 register *******************/ |
- | 1050 | #define BKP_DR32_D_Pos (0U) |
|
- | 1051 | #define BKP_DR32_D_Msk (0xFFFFU << BKP_DR32_D_Pos) /*!< 0x0000FFFF */ |
|
947 | #define BKP_DR32_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1052 | #define BKP_DR32_D BKP_DR32_D_Msk /*!< Backup data */ |
948 | 1053 | ||
949 | /******************* Bit definition for BKP_DR33 register *******************/ |
1054 | /******************* Bit definition for BKP_DR33 register *******************/ |
- | 1055 | #define BKP_DR33_D_Pos (0U) |
|
- | 1056 | #define BKP_DR33_D_Msk (0xFFFFU << BKP_DR33_D_Pos) /*!< 0x0000FFFF */ |
|
950 | #define BKP_DR33_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1057 | #define BKP_DR33_D BKP_DR33_D_Msk /*!< Backup data */ |
951 | 1058 | ||
952 | /******************* Bit definition for BKP_DR34 register *******************/ |
1059 | /******************* Bit definition for BKP_DR34 register *******************/ |
- | 1060 | #define BKP_DR34_D_Pos (0U) |
|
- | 1061 | #define BKP_DR34_D_Msk (0xFFFFU << BKP_DR34_D_Pos) /*!< 0x0000FFFF */ |
|
953 | #define BKP_DR34_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1062 | #define BKP_DR34_D BKP_DR34_D_Msk /*!< Backup data */ |
954 | 1063 | ||
955 | /******************* Bit definition for BKP_DR35 register *******************/ |
1064 | /******************* Bit definition for BKP_DR35 register *******************/ |
- | 1065 | #define BKP_DR35_D_Pos (0U) |
|
- | 1066 | #define BKP_DR35_D_Msk (0xFFFFU << BKP_DR35_D_Pos) /*!< 0x0000FFFF */ |
|
956 | #define BKP_DR35_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1067 | #define BKP_DR35_D BKP_DR35_D_Msk /*!< Backup data */ |
957 | 1068 | ||
958 | /******************* Bit definition for BKP_DR36 register *******************/ |
1069 | /******************* Bit definition for BKP_DR36 register *******************/ |
- | 1070 | #define BKP_DR36_D_Pos (0U) |
|
- | 1071 | #define BKP_DR36_D_Msk (0xFFFFU << BKP_DR36_D_Pos) /*!< 0x0000FFFF */ |
|
959 | #define BKP_DR36_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1072 | #define BKP_DR36_D BKP_DR36_D_Msk /*!< Backup data */ |
960 | 1073 | ||
961 | /******************* Bit definition for BKP_DR37 register *******************/ |
1074 | /******************* Bit definition for BKP_DR37 register *******************/ |
- | 1075 | #define BKP_DR37_D_Pos (0U) |
|
- | 1076 | #define BKP_DR37_D_Msk (0xFFFFU << BKP_DR37_D_Pos) /*!< 0x0000FFFF */ |
|
962 | #define BKP_DR37_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1077 | #define BKP_DR37_D BKP_DR37_D_Msk /*!< Backup data */ |
963 | 1078 | ||
964 | /******************* Bit definition for BKP_DR38 register *******************/ |
1079 | /******************* Bit definition for BKP_DR38 register *******************/ |
- | 1080 | #define BKP_DR38_D_Pos (0U) |
|
- | 1081 | #define BKP_DR38_D_Msk (0xFFFFU << BKP_DR38_D_Pos) /*!< 0x0000FFFF */ |
|
965 | #define BKP_DR38_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1082 | #define BKP_DR38_D BKP_DR38_D_Msk /*!< Backup data */ |
966 | 1083 | ||
967 | /******************* Bit definition for BKP_DR39 register *******************/ |
1084 | /******************* Bit definition for BKP_DR39 register *******************/ |
- | 1085 | #define BKP_DR39_D_Pos (0U) |
|
- | 1086 | #define BKP_DR39_D_Msk (0xFFFFU << BKP_DR39_D_Pos) /*!< 0x0000FFFF */ |
|
968 | #define BKP_DR39_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1087 | #define BKP_DR39_D BKP_DR39_D_Msk /*!< Backup data */ |
969 | 1088 | ||
970 | /******************* Bit definition for BKP_DR40 register *******************/ |
1089 | /******************* Bit definition for BKP_DR40 register *******************/ |
- | 1090 | #define BKP_DR40_D_Pos (0U) |
|
- | 1091 | #define BKP_DR40_D_Msk (0xFFFFU << BKP_DR40_D_Pos) /*!< 0x0000FFFF */ |
|
971 | #define BKP_DR40_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1092 | #define BKP_DR40_D BKP_DR40_D_Msk /*!< Backup data */ |
972 | 1093 | ||
973 | /******************* Bit definition for BKP_DR41 register *******************/ |
1094 | /******************* Bit definition for BKP_DR41 register *******************/ |
- | 1095 | #define BKP_DR41_D_Pos (0U) |
|
- | 1096 | #define BKP_DR41_D_Msk (0xFFFFU << BKP_DR41_D_Pos) /*!< 0x0000FFFF */ |
|
974 | #define BKP_DR41_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1097 | #define BKP_DR41_D BKP_DR41_D_Msk /*!< Backup data */ |
975 | 1098 | ||
976 | /******************* Bit definition for BKP_DR42 register *******************/ |
1099 | /******************* Bit definition for BKP_DR42 register *******************/ |
- | 1100 | #define BKP_DR42_D_Pos (0U) |
|
- | 1101 | #define BKP_DR42_D_Msk (0xFFFFU << BKP_DR42_D_Pos) /*!< 0x0000FFFF */ |
|
977 | #define BKP_DR42_D ((uint32_t)0x0000FFFF) /*!< Backup data */ |
1102 | #define BKP_DR42_D BKP_DR42_D_Msk /*!< Backup data */ |
978 | 1103 | ||
979 | #define RTC_BKP_NUMBER 42 |
1104 | #define RTC_BKP_NUMBER 42 |
980 | 1105 | ||
981 | /****************** Bit definition for BKP_RTCCR register *******************/ |
1106 | /****************** Bit definition for BKP_RTCCR register *******************/ |
- | 1107 | #define BKP_RTCCR_CAL_Pos (0U) |
|
- | 1108 | #define BKP_RTCCR_CAL_Msk (0x7FU << BKP_RTCCR_CAL_Pos) /*!< 0x0000007F */ |
|
982 | #define BKP_RTCCR_CAL ((uint32_t)0x0000007F) /*!< Calibration value */ |
1109 | #define BKP_RTCCR_CAL BKP_RTCCR_CAL_Msk /*!< Calibration value */ |
- | 1110 | #define BKP_RTCCR_CCO_Pos (7U) |
|
- | 1111 | #define BKP_RTCCR_CCO_Msk (0x1U << BKP_RTCCR_CCO_Pos) /*!< 0x00000080 */ |
|
983 | #define BKP_RTCCR_CCO ((uint32_t)0x00000080) /*!< Calibration Clock Output */ |
1112 | #define BKP_RTCCR_CCO BKP_RTCCR_CCO_Msk /*!< Calibration Clock Output */ |
- | 1113 | #define BKP_RTCCR_ASOE_Pos (8U) |
|
- | 1114 | #define BKP_RTCCR_ASOE_Msk (0x1U << BKP_RTCCR_ASOE_Pos) /*!< 0x00000100 */ |
|
984 | #define BKP_RTCCR_ASOE ((uint32_t)0x00000100) /*!< Alarm or Second Output Enable */ |
1115 | #define BKP_RTCCR_ASOE BKP_RTCCR_ASOE_Msk /*!< Alarm or Second Output Enable */ |
- | 1116 | #define BKP_RTCCR_ASOS_Pos (9U) |
|
- | 1117 | #define BKP_RTCCR_ASOS_Msk (0x1U << BKP_RTCCR_ASOS_Pos) /*!< 0x00000200 */ |
|
985 | #define BKP_RTCCR_ASOS ((uint32_t)0x00000200) /*!< Alarm or Second Output Selection */ |
1118 | #define BKP_RTCCR_ASOS BKP_RTCCR_ASOS_Msk /*!< Alarm or Second Output Selection */ |
986 | 1119 | ||
987 | /******************** Bit definition for BKP_CR register ********************/ |
1120 | /******************** Bit definition for BKP_CR register ********************/ |
- | 1121 | #define BKP_CR_TPE_Pos (0U) |
|
- | 1122 | #define BKP_CR_TPE_Msk (0x1U << BKP_CR_TPE_Pos) /*!< 0x00000001 */ |
|
988 | #define BKP_CR_TPE ((uint32_t)0x00000001) /*!< TAMPER pin enable */ |
1123 | #define BKP_CR_TPE BKP_CR_TPE_Msk /*!< TAMPER pin enable */ |
- | 1124 | #define BKP_CR_TPAL_Pos (1U) |
|
- | 1125 | #define BKP_CR_TPAL_Msk (0x1U << BKP_CR_TPAL_Pos) /*!< 0x00000002 */ |
|
989 | #define BKP_CR_TPAL ((uint32_t)0x00000002) /*!< TAMPER pin active level */ |
1126 | #define BKP_CR_TPAL BKP_CR_TPAL_Msk /*!< TAMPER pin active level */ |
990 | 1127 | ||
991 | /******************* Bit definition for BKP_CSR register ********************/ |
1128 | /******************* Bit definition for BKP_CSR register ********************/ |
- | 1129 | #define BKP_CSR_CTE_Pos (0U) |
|
- | 1130 | #define BKP_CSR_CTE_Msk (0x1U << BKP_CSR_CTE_Pos) /*!< 0x00000001 */ |
|
992 | #define BKP_CSR_CTE ((uint32_t)0x00000001) /*!< Clear Tamper event */ |
1131 | #define BKP_CSR_CTE BKP_CSR_CTE_Msk /*!< Clear Tamper event */ |
- | 1132 | #define BKP_CSR_CTI_Pos (1U) |
|
- | 1133 | #define BKP_CSR_CTI_Msk (0x1U << BKP_CSR_CTI_Pos) /*!< 0x00000002 */ |
|
993 | #define BKP_CSR_CTI ((uint32_t)0x00000002) /*!< Clear Tamper Interrupt */ |
1134 | #define BKP_CSR_CTI BKP_CSR_CTI_Msk /*!< Clear Tamper Interrupt */ |
- | 1135 | #define BKP_CSR_TPIE_Pos (2U) |
|
- | 1136 | #define BKP_CSR_TPIE_Msk (0x1U << BKP_CSR_TPIE_Pos) /*!< 0x00000004 */ |
|
994 | #define BKP_CSR_TPIE ((uint32_t)0x00000004) /*!< TAMPER Pin interrupt enable */ |
1137 | #define BKP_CSR_TPIE BKP_CSR_TPIE_Msk /*!< TAMPER Pin interrupt enable */ |
- | 1138 | #define BKP_CSR_TEF_Pos (8U) |
|
- | 1139 | #define BKP_CSR_TEF_Msk (0x1U << BKP_CSR_TEF_Pos) /*!< 0x00000100 */ |
|
995 | #define BKP_CSR_TEF ((uint32_t)0x00000100) /*!< Tamper Event Flag */ |
1140 | #define BKP_CSR_TEF BKP_CSR_TEF_Msk /*!< Tamper Event Flag */ |
- | 1141 | #define BKP_CSR_TIF_Pos (9U) |
|
- | 1142 | #define BKP_CSR_TIF_Msk (0x1U << BKP_CSR_TIF_Pos) /*!< 0x00000200 */ |
|
996 | #define BKP_CSR_TIF ((uint32_t)0x00000200) /*!< Tamper Interrupt Flag */ |
1143 | #define BKP_CSR_TIF BKP_CSR_TIF_Msk /*!< Tamper Interrupt Flag */ |
997 | 1144 | ||
998 | /******************************************************************************/ |
1145 | /******************************************************************************/ |
999 | /* */ |
1146 | /* */ |
1000 | /* Reset and Clock Control */ |
1147 | /* Reset and Clock Control */ |
1001 | /* */ |
1148 | /* */ |
1002 | /******************************************************************************/ |
1149 | /******************************************************************************/ |
1003 | 1150 | ||
1004 | /******************** Bit definition for RCC_CR register ********************/ |
1151 | /******************** Bit definition for RCC_CR register ********************/ |
- | 1152 | #define RCC_CR_HSION_Pos (0U) |
|
- | 1153 | #define RCC_CR_HSION_Msk (0x1U << RCC_CR_HSION_Pos) /*!< 0x00000001 */ |
|
1005 | #define RCC_CR_HSION ((uint32_t)0x00000001) /*!< Internal High Speed clock enable */ |
1154 | #define RCC_CR_HSION RCC_CR_HSION_Msk /*!< Internal High Speed clock enable */ |
- | 1155 | #define RCC_CR_HSIRDY_Pos (1U) |
|
- | 1156 | #define RCC_CR_HSIRDY_Msk (0x1U << RCC_CR_HSIRDY_Pos) /*!< 0x00000002 */ |
|
1006 | #define RCC_CR_HSIRDY ((uint32_t)0x00000002) /*!< Internal High Speed clock ready flag */ |
1157 | #define RCC_CR_HSIRDY RCC_CR_HSIRDY_Msk /*!< Internal High Speed clock ready flag */ |
- | 1158 | #define RCC_CR_HSITRIM_Pos (3U) |
|
- | 1159 | #define RCC_CR_HSITRIM_Msk (0x1FU << RCC_CR_HSITRIM_Pos) /*!< 0x000000F8 */ |
|
1007 | #define RCC_CR_HSITRIM ((uint32_t)0x000000F8) /*!< Internal High Speed clock trimming */ |
1160 | #define RCC_CR_HSITRIM RCC_CR_HSITRIM_Msk /*!< Internal High Speed clock trimming */ |
- | 1161 | #define RCC_CR_HSICAL_Pos (8U) |
|
- | 1162 | #define RCC_CR_HSICAL_Msk (0xFFU << RCC_CR_HSICAL_Pos) /*!< 0x0000FF00 */ |
|
1008 | #define RCC_CR_HSICAL ((uint32_t)0x0000FF00) /*!< Internal High Speed clock Calibration */ |
1163 | #define RCC_CR_HSICAL RCC_CR_HSICAL_Msk /*!< Internal High Speed clock Calibration */ |
- | 1164 | #define RCC_CR_HSEON_Pos (16U) |
|
- | 1165 | #define RCC_CR_HSEON_Msk (0x1U << RCC_CR_HSEON_Pos) /*!< 0x00010000 */ |
|
1009 | #define RCC_CR_HSEON ((uint32_t)0x00010000) /*!< External High Speed clock enable */ |
1166 | #define RCC_CR_HSEON RCC_CR_HSEON_Msk /*!< External High Speed clock enable */ |
- | 1167 | #define RCC_CR_HSERDY_Pos (17U) |
|
- | 1168 | #define RCC_CR_HSERDY_Msk (0x1U << RCC_CR_HSERDY_Pos) /*!< 0x00020000 */ |
|
1010 | #define RCC_CR_HSERDY ((uint32_t)0x00020000) /*!< External High Speed clock ready flag */ |
1169 | #define RCC_CR_HSERDY RCC_CR_HSERDY_Msk /*!< External High Speed clock ready flag */ |
- | 1170 | #define RCC_CR_HSEBYP_Pos (18U) |
|
- | 1171 | #define RCC_CR_HSEBYP_Msk (0x1U << RCC_CR_HSEBYP_Pos) /*!< 0x00040000 */ |
|
1011 | #define RCC_CR_HSEBYP ((uint32_t)0x00040000) /*!< External High Speed clock Bypass */ |
1172 | #define RCC_CR_HSEBYP RCC_CR_HSEBYP_Msk /*!< External High Speed clock Bypass */ |
- | 1173 | #define RCC_CR_CSSON_Pos (19U) |
|
- | 1174 | #define RCC_CR_CSSON_Msk (0x1U << RCC_CR_CSSON_Pos) /*!< 0x00080000 */ |
|
1012 | #define RCC_CR_CSSON ((uint32_t)0x00080000) /*!< Clock Security System enable */ |
1175 | #define RCC_CR_CSSON RCC_CR_CSSON_Msk /*!< Clock Security System enable */ |
- | 1176 | #define RCC_CR_PLLON_Pos (24U) |
|
- | 1177 | #define RCC_CR_PLLON_Msk (0x1U << RCC_CR_PLLON_Pos) /*!< 0x01000000 */ |
|
1013 | #define RCC_CR_PLLON ((uint32_t)0x01000000) /*!< PLL enable */ |
1178 | #define RCC_CR_PLLON RCC_CR_PLLON_Msk /*!< PLL enable */ |
- | 1179 | #define RCC_CR_PLLRDY_Pos (25U) |
|
- | 1180 | #define RCC_CR_PLLRDY_Msk (0x1U << RCC_CR_PLLRDY_Pos) /*!< 0x02000000 */ |
|
1014 | #define RCC_CR_PLLRDY ((uint32_t)0x02000000) /*!< PLL clock ready flag */ |
1181 | #define RCC_CR_PLLRDY RCC_CR_PLLRDY_Msk /*!< PLL clock ready flag */ |
1015 | 1182 | ||
1016 | 1183 | ||
1017 | /******************* Bit definition for RCC_CFGR register *******************/ |
1184 | /******************* Bit definition for RCC_CFGR register *******************/ |
1018 | /*!< SW configuration */ |
1185 | /*!< SW configuration */ |
- | 1186 | #define RCC_CFGR_SW_Pos (0U) |
|
- | 1187 | #define RCC_CFGR_SW_Msk (0x3U << RCC_CFGR_SW_Pos) /*!< 0x00000003 */ |
|
1019 | #define RCC_CFGR_SW ((uint32_t)0x00000003) /*!< SW[1:0] bits (System clock Switch) */ |
1188 | #define RCC_CFGR_SW RCC_CFGR_SW_Msk /*!< SW[1:0] bits (System clock Switch) */ |
1020 | #define RCC_CFGR_SW_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
1189 | #define RCC_CFGR_SW_0 (0x1U << RCC_CFGR_SW_Pos) /*!< 0x00000001 */ |
1021 | #define RCC_CFGR_SW_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
1190 | #define RCC_CFGR_SW_1 (0x2U << RCC_CFGR_SW_Pos) /*!< 0x00000002 */ |
1022 | 1191 | ||
1023 | #define RCC_CFGR_SW_HSI ((uint32_t)0x00000000) /*!< HSI selected as system clock */ |
1192 | #define RCC_CFGR_SW_HSI ((uint32_t)0x00000000) /*!< HSI selected as system clock */ |
1024 | #define RCC_CFGR_SW_HSE ((uint32_t)0x00000001) /*!< HSE selected as system clock */ |
1193 | #define RCC_CFGR_SW_HSE ((uint32_t)0x00000001) /*!< HSE selected as system clock */ |
1025 | #define RCC_CFGR_SW_PLL ((uint32_t)0x00000002) /*!< PLL selected as system clock */ |
1194 | #define RCC_CFGR_SW_PLL ((uint32_t)0x00000002) /*!< PLL selected as system clock */ |
1026 | 1195 | ||
1027 | /*!< SWS configuration */ |
1196 | /*!< SWS configuration */ |
- | 1197 | #define RCC_CFGR_SWS_Pos (2U) |
|
- | 1198 | #define RCC_CFGR_SWS_Msk (0x3U << RCC_CFGR_SWS_Pos) /*!< 0x0000000C */ |
|
1028 | #define RCC_CFGR_SWS ((uint32_t)0x0000000C) /*!< SWS[1:0] bits (System Clock Switch Status) */ |
1199 | #define RCC_CFGR_SWS RCC_CFGR_SWS_Msk /*!< SWS[1:0] bits (System Clock Switch Status) */ |
1029 | #define RCC_CFGR_SWS_0 ((uint32_t)0x00000004) /*!< Bit 0 */ |
1200 | #define RCC_CFGR_SWS_0 (0x1U << RCC_CFGR_SWS_Pos) /*!< 0x00000004 */ |
1030 | #define RCC_CFGR_SWS_1 ((uint32_t)0x00000008) /*!< Bit 1 */ |
1201 | #define RCC_CFGR_SWS_1 (0x2U << RCC_CFGR_SWS_Pos) /*!< 0x00000008 */ |
1031 | 1202 | ||
1032 | #define RCC_CFGR_SWS_HSI ((uint32_t)0x00000000) /*!< HSI oscillator used as system clock */ |
1203 | #define RCC_CFGR_SWS_HSI ((uint32_t)0x00000000) /*!< HSI oscillator used as system clock */ |
1033 | #define RCC_CFGR_SWS_HSE ((uint32_t)0x00000004) /*!< HSE oscillator used as system clock */ |
1204 | #define RCC_CFGR_SWS_HSE ((uint32_t)0x00000004) /*!< HSE oscillator used as system clock */ |
1034 | #define RCC_CFGR_SWS_PLL ((uint32_t)0x00000008) /*!< PLL used as system clock */ |
1205 | #define RCC_CFGR_SWS_PLL ((uint32_t)0x00000008) /*!< PLL used as system clock */ |
1035 | 1206 | ||
1036 | /*!< HPRE configuration */ |
1207 | /*!< HPRE configuration */ |
- | 1208 | #define RCC_CFGR_HPRE_Pos (4U) |
|
- | 1209 | #define RCC_CFGR_HPRE_Msk (0xFU << RCC_CFGR_HPRE_Pos) /*!< 0x000000F0 */ |
|
1037 | #define RCC_CFGR_HPRE ((uint32_t)0x000000F0) /*!< HPRE[3:0] bits (AHB prescaler) */ |
1210 | #define RCC_CFGR_HPRE RCC_CFGR_HPRE_Msk /*!< HPRE[3:0] bits (AHB prescaler) */ |
1038 | #define RCC_CFGR_HPRE_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
1211 | #define RCC_CFGR_HPRE_0 (0x1U << RCC_CFGR_HPRE_Pos) /*!< 0x00000010 */ |
1039 | #define RCC_CFGR_HPRE_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
1212 | #define RCC_CFGR_HPRE_1 (0x2U << RCC_CFGR_HPRE_Pos) /*!< 0x00000020 */ |
1040 | #define RCC_CFGR_HPRE_2 ((uint32_t)0x00000040) /*!< Bit 2 */ |
1213 | #define RCC_CFGR_HPRE_2 (0x4U << RCC_CFGR_HPRE_Pos) /*!< 0x00000040 */ |
1041 | #define RCC_CFGR_HPRE_3 ((uint32_t)0x00000080) /*!< Bit 3 */ |
1214 | #define RCC_CFGR_HPRE_3 (0x8U << RCC_CFGR_HPRE_Pos) /*!< 0x00000080 */ |
1042 | 1215 | ||
1043 | #define RCC_CFGR_HPRE_DIV1 ((uint32_t)0x00000000) /*!< SYSCLK not divided */ |
1216 | #define RCC_CFGR_HPRE_DIV1 ((uint32_t)0x00000000) /*!< SYSCLK not divided */ |
1044 | #define RCC_CFGR_HPRE_DIV2 ((uint32_t)0x00000080) /*!< SYSCLK divided by 2 */ |
1217 | #define RCC_CFGR_HPRE_DIV2 ((uint32_t)0x00000080) /*!< SYSCLK divided by 2 */ |
1045 | #define RCC_CFGR_HPRE_DIV4 ((uint32_t)0x00000090) /*!< SYSCLK divided by 4 */ |
1218 | #define RCC_CFGR_HPRE_DIV4 ((uint32_t)0x00000090) /*!< SYSCLK divided by 4 */ |
1046 | #define RCC_CFGR_HPRE_DIV8 ((uint32_t)0x000000A0) /*!< SYSCLK divided by 8 */ |
1219 | #define RCC_CFGR_HPRE_DIV8 ((uint32_t)0x000000A0) /*!< SYSCLK divided by 8 */ |
1047 | #define RCC_CFGR_HPRE_DIV16 ((uint32_t)0x000000B0) /*!< SYSCLK divided by 16 */ |
1220 | #define RCC_CFGR_HPRE_DIV16 ((uint32_t)0x000000B0) /*!< SYSCLK divided by 16 */ |
1048 | #define RCC_CFGR_HPRE_DIV64 ((uint32_t)0x000000C0) /*!< SYSCLK divided by 64 */ |
1221 | #define RCC_CFGR_HPRE_DIV64 ((uint32_t)0x000000C0) /*!< SYSCLK divided by 64 */ |
1049 | #define RCC_CFGR_HPRE_DIV128 ((uint32_t)0x000000D0) /*!< SYSCLK divided by 128 */ |
1222 | #define RCC_CFGR_HPRE_DIV128 ((uint32_t)0x000000D0) /*!< SYSCLK divided by 128 */ |
1050 | #define RCC_CFGR_HPRE_DIV256 ((uint32_t)0x000000E0) /*!< SYSCLK divided by 256 */ |
1223 | #define RCC_CFGR_HPRE_DIV256 ((uint32_t)0x000000E0) /*!< SYSCLK divided by 256 */ |
1051 | #define RCC_CFGR_HPRE_DIV512 ((uint32_t)0x000000F0) /*!< SYSCLK divided by 512 */ |
1224 | #define RCC_CFGR_HPRE_DIV512 ((uint32_t)0x000000F0) /*!< SYSCLK divided by 512 */ |
1052 | 1225 | ||
1053 | /*!< PPRE1 configuration */ |
1226 | /*!< PPRE1 configuration */ |
- | 1227 | #define RCC_CFGR_PPRE1_Pos (8U) |
|
- | 1228 | #define RCC_CFGR_PPRE1_Msk (0x7U << RCC_CFGR_PPRE1_Pos) /*!< 0x00000700 */ |
|
1054 | #define RCC_CFGR_PPRE1 ((uint32_t)0x00000700) /*!< PRE1[2:0] bits (APB1 prescaler) */ |
1229 | #define RCC_CFGR_PPRE1 RCC_CFGR_PPRE1_Msk /*!< PRE1[2:0] bits (APB1 prescaler) */ |
1055 | #define RCC_CFGR_PPRE1_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
1230 | #define RCC_CFGR_PPRE1_0 (0x1U << RCC_CFGR_PPRE1_Pos) /*!< 0x00000100 */ |
1056 | #define RCC_CFGR_PPRE1_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
1231 | #define RCC_CFGR_PPRE1_1 (0x2U << RCC_CFGR_PPRE1_Pos) /*!< 0x00000200 */ |
1057 | #define RCC_CFGR_PPRE1_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
1232 | #define RCC_CFGR_PPRE1_2 (0x4U << RCC_CFGR_PPRE1_Pos) /*!< 0x00000400 */ |
1058 | 1233 | ||
1059 | #define RCC_CFGR_PPRE1_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */ |
1234 | #define RCC_CFGR_PPRE1_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */ |
1060 | #define RCC_CFGR_PPRE1_DIV2 ((uint32_t)0x00000400) /*!< HCLK divided by 2 */ |
1235 | #define RCC_CFGR_PPRE1_DIV2 ((uint32_t)0x00000400) /*!< HCLK divided by 2 */ |
1061 | #define RCC_CFGR_PPRE1_DIV4 ((uint32_t)0x00000500) /*!< HCLK divided by 4 */ |
1236 | #define RCC_CFGR_PPRE1_DIV4 ((uint32_t)0x00000500) /*!< HCLK divided by 4 */ |
1062 | #define RCC_CFGR_PPRE1_DIV8 ((uint32_t)0x00000600) /*!< HCLK divided by 8 */ |
1237 | #define RCC_CFGR_PPRE1_DIV8 ((uint32_t)0x00000600) /*!< HCLK divided by 8 */ |
1063 | #define RCC_CFGR_PPRE1_DIV16 ((uint32_t)0x00000700) /*!< HCLK divided by 16 */ |
1238 | #define RCC_CFGR_PPRE1_DIV16 ((uint32_t)0x00000700) /*!< HCLK divided by 16 */ |
1064 | 1239 | ||
1065 | /*!< PPRE2 configuration */ |
1240 | /*!< PPRE2 configuration */ |
- | 1241 | #define RCC_CFGR_PPRE2_Pos (11U) |
|
- | 1242 | #define RCC_CFGR_PPRE2_Msk (0x7U << RCC_CFGR_PPRE2_Pos) /*!< 0x00003800 */ |
|
1066 | #define RCC_CFGR_PPRE2 ((uint32_t)0x00003800) /*!< PRE2[2:0] bits (APB2 prescaler) */ |
1243 | #define RCC_CFGR_PPRE2 RCC_CFGR_PPRE2_Msk /*!< PRE2[2:0] bits (APB2 prescaler) */ |
1067 | #define RCC_CFGR_PPRE2_0 ((uint32_t)0x00000800) /*!< Bit 0 */ |
1244 | #define RCC_CFGR_PPRE2_0 (0x1U << RCC_CFGR_PPRE2_Pos) /*!< 0x00000800 */ |
1068 | #define RCC_CFGR_PPRE2_1 ((uint32_t)0x00001000) /*!< Bit 1 */ |
1245 | #define RCC_CFGR_PPRE2_1 (0x2U << RCC_CFGR_PPRE2_Pos) /*!< 0x00001000 */ |
1069 | #define RCC_CFGR_PPRE2_2 ((uint32_t)0x00002000) /*!< Bit 2 */ |
1246 | #define RCC_CFGR_PPRE2_2 (0x4U << RCC_CFGR_PPRE2_Pos) /*!< 0x00002000 */ |
1070 | 1247 | ||
1071 | #define RCC_CFGR_PPRE2_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */ |
1248 | #define RCC_CFGR_PPRE2_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */ |
1072 | #define RCC_CFGR_PPRE2_DIV2 ((uint32_t)0x00002000) /*!< HCLK divided by 2 */ |
1249 | #define RCC_CFGR_PPRE2_DIV2 ((uint32_t)0x00002000) /*!< HCLK divided by 2 */ |
1073 | #define RCC_CFGR_PPRE2_DIV4 ((uint32_t)0x00002800) /*!< HCLK divided by 4 */ |
1250 | #define RCC_CFGR_PPRE2_DIV4 ((uint32_t)0x00002800) /*!< HCLK divided by 4 */ |
1074 | #define RCC_CFGR_PPRE2_DIV8 ((uint32_t)0x00003000) /*!< HCLK divided by 8 */ |
1251 | #define RCC_CFGR_PPRE2_DIV8 ((uint32_t)0x00003000) /*!< HCLK divided by 8 */ |
1075 | #define RCC_CFGR_PPRE2_DIV16 ((uint32_t)0x00003800) /*!< HCLK divided by 16 */ |
1252 | #define RCC_CFGR_PPRE2_DIV16 ((uint32_t)0x00003800) /*!< HCLK divided by 16 */ |
1076 | 1253 | ||
1077 | /*!< ADCPPRE configuration */ |
1254 | /*!< ADCPPRE configuration */ |
- | 1255 | #define RCC_CFGR_ADCPRE_Pos (14U) |
|
- | 1256 | #define RCC_CFGR_ADCPRE_Msk (0x3U << RCC_CFGR_ADCPRE_Pos) /*!< 0x0000C000 */ |
|
1078 | #define RCC_CFGR_ADCPRE ((uint32_t)0x0000C000) /*!< ADCPRE[1:0] bits (ADC prescaler) */ |
1257 | #define RCC_CFGR_ADCPRE RCC_CFGR_ADCPRE_Msk /*!< ADCPRE[1:0] bits (ADC prescaler) */ |
1079 | #define RCC_CFGR_ADCPRE_0 ((uint32_t)0x00004000) /*!< Bit 0 */ |
1258 | #define RCC_CFGR_ADCPRE_0 (0x1U << RCC_CFGR_ADCPRE_Pos) /*!< 0x00004000 */ |
1080 | #define RCC_CFGR_ADCPRE_1 ((uint32_t)0x00008000) /*!< Bit 1 */ |
1259 | #define RCC_CFGR_ADCPRE_1 (0x2U << RCC_CFGR_ADCPRE_Pos) /*!< 0x00008000 */ |
1081 | 1260 | ||
1082 | #define RCC_CFGR_ADCPRE_DIV2 ((uint32_t)0x00000000) /*!< PCLK2 divided by 2 */ |
1261 | #define RCC_CFGR_ADCPRE_DIV2 ((uint32_t)0x00000000) /*!< PCLK2 divided by 2 */ |
1083 | #define RCC_CFGR_ADCPRE_DIV4 ((uint32_t)0x00004000) /*!< PCLK2 divided by 4 */ |
1262 | #define RCC_CFGR_ADCPRE_DIV4 ((uint32_t)0x00004000) /*!< PCLK2 divided by 4 */ |
1084 | #define RCC_CFGR_ADCPRE_DIV6 ((uint32_t)0x00008000) /*!< PCLK2 divided by 6 */ |
1263 | #define RCC_CFGR_ADCPRE_DIV6 ((uint32_t)0x00008000) /*!< PCLK2 divided by 6 */ |
1085 | #define RCC_CFGR_ADCPRE_DIV8 ((uint32_t)0x0000C000) /*!< PCLK2 divided by 8 */ |
1264 | #define RCC_CFGR_ADCPRE_DIV8 ((uint32_t)0x0000C000) /*!< PCLK2 divided by 8 */ |
1086 | 1265 | ||
- | 1266 | #define RCC_CFGR_PLLSRC_Pos (16U) |
|
- | 1267 | #define RCC_CFGR_PLLSRC_Msk (0x1U << RCC_CFGR_PLLSRC_Pos) /*!< 0x00010000 */ |
|
1087 | #define RCC_CFGR_PLLSRC ((uint32_t)0x00010000) /*!< PLL entry clock source */ |
1268 | #define RCC_CFGR_PLLSRC RCC_CFGR_PLLSRC_Msk /*!< PLL entry clock source */ |
1088 | 1269 | ||
- | 1270 | #define RCC_CFGR_PLLXTPRE_Pos (17U) |
|
- | 1271 | #define RCC_CFGR_PLLXTPRE_Msk (0x1U << RCC_CFGR_PLLXTPRE_Pos) /*!< 0x00020000 */ |
|
1089 | #define RCC_CFGR_PLLXTPRE ((uint32_t)0x00020000) /*!< HSE divider for PLL entry */ |
1272 | #define RCC_CFGR_PLLXTPRE RCC_CFGR_PLLXTPRE_Msk /*!< HSE divider for PLL entry */ |
1090 | 1273 | ||
1091 | /*!< PLLMUL configuration */ |
1274 | /*!< PLLMUL configuration */ |
- | 1275 | #define RCC_CFGR_PLLMULL_Pos (18U) |
|
- | 1276 | #define RCC_CFGR_PLLMULL_Msk (0xFU << RCC_CFGR_PLLMULL_Pos) /*!< 0x003C0000 */ |
|
1092 | #define RCC_CFGR_PLLMULL ((uint32_t)0x003C0000) /*!< PLLMUL[3:0] bits (PLL multiplication factor) */ |
1277 | #define RCC_CFGR_PLLMULL RCC_CFGR_PLLMULL_Msk /*!< PLLMUL[3:0] bits (PLL multiplication factor) */ |
1093 | #define RCC_CFGR_PLLMULL_0 ((uint32_t)0x00040000) /*!< Bit 0 */ |
1278 | #define RCC_CFGR_PLLMULL_0 (0x1U << RCC_CFGR_PLLMULL_Pos) /*!< 0x00040000 */ |
1094 | #define RCC_CFGR_PLLMULL_1 ((uint32_t)0x00080000) /*!< Bit 1 */ |
1279 | #define RCC_CFGR_PLLMULL_1 (0x2U << RCC_CFGR_PLLMULL_Pos) /*!< 0x00080000 */ |
1095 | #define RCC_CFGR_PLLMULL_2 ((uint32_t)0x00100000) /*!< Bit 2 */ |
1280 | #define RCC_CFGR_PLLMULL_2 (0x4U << RCC_CFGR_PLLMULL_Pos) /*!< 0x00100000 */ |
1096 | #define RCC_CFGR_PLLMULL_3 ((uint32_t)0x00200000) /*!< Bit 3 */ |
1281 | #define RCC_CFGR_PLLMULL_3 (0x8U << RCC_CFGR_PLLMULL_Pos) /*!< 0x00200000 */ |
1097 | 1282 | ||
1098 | #define RCC_CFGR_PLLXTPRE_HSE ((uint32_t)0x00000000) /*!< HSE clock not divided for PLL entry */ |
1283 | #define RCC_CFGR_PLLXTPRE_HSE ((uint32_t)0x00000000) /*!< HSE clock not divided for PLL entry */ |
1099 | #define RCC_CFGR_PLLXTPRE_HSE_DIV2 ((uint32_t)0x00020000) /*!< HSE clock divided by 2 for PLL entry */ |
1284 | #define RCC_CFGR_PLLXTPRE_HSE_DIV2 ((uint32_t)0x00020000) /*!< HSE clock divided by 2 for PLL entry */ |
1100 | 1285 | ||
1101 | #define RCC_CFGR_PLLMULL2 ((uint32_t)0x00000000) /*!< PLL input clock*2 */ |
1286 | #define RCC_CFGR_PLLMULL2 ((uint32_t)0x00000000) /*!< PLL input clock*2 */ |
- | 1287 | #define RCC_CFGR_PLLMULL3_Pos (18U) |
|
- | 1288 | #define RCC_CFGR_PLLMULL3_Msk (0x1U << RCC_CFGR_PLLMULL3_Pos) /*!< 0x00040000 */ |
|
1102 | #define RCC_CFGR_PLLMULL3 ((uint32_t)0x00040000) /*!< PLL input clock*3 */ |
1289 | #define RCC_CFGR_PLLMULL3 RCC_CFGR_PLLMULL3_Msk /*!< PLL input clock*3 */ |
- | 1290 | #define RCC_CFGR_PLLMULL4_Pos (19U) |
|
- | 1291 | #define RCC_CFGR_PLLMULL4_Msk (0x1U << RCC_CFGR_PLLMULL4_Pos) /*!< 0x00080000 */ |
|
1103 | #define RCC_CFGR_PLLMULL4 ((uint32_t)0x00080000) /*!< PLL input clock*4 */ |
1292 | #define RCC_CFGR_PLLMULL4 RCC_CFGR_PLLMULL4_Msk /*!< PLL input clock*4 */ |
- | 1293 | #define RCC_CFGR_PLLMULL5_Pos (18U) |
|
- | 1294 | #define RCC_CFGR_PLLMULL5_Msk (0x3U << RCC_CFGR_PLLMULL5_Pos) /*!< 0x000C0000 */ |
|
1104 | #define RCC_CFGR_PLLMULL5 ((uint32_t)0x000C0000) /*!< PLL input clock*5 */ |
1295 | #define RCC_CFGR_PLLMULL5 RCC_CFGR_PLLMULL5_Msk /*!< PLL input clock*5 */ |
- | 1296 | #define RCC_CFGR_PLLMULL6_Pos (20U) |
|
- | 1297 | #define RCC_CFGR_PLLMULL6_Msk (0x1U << RCC_CFGR_PLLMULL6_Pos) /*!< 0x00100000 */ |
|
1105 | #define RCC_CFGR_PLLMULL6 ((uint32_t)0x00100000) /*!< PLL input clock*6 */ |
1298 | #define RCC_CFGR_PLLMULL6 RCC_CFGR_PLLMULL6_Msk /*!< PLL input clock*6 */ |
- | 1299 | #define RCC_CFGR_PLLMULL7_Pos (18U) |
|
- | 1300 | #define RCC_CFGR_PLLMULL7_Msk (0x5U << RCC_CFGR_PLLMULL7_Pos) /*!< 0x00140000 */ |
|
1106 | #define RCC_CFGR_PLLMULL7 ((uint32_t)0x00140000) /*!< PLL input clock*7 */ |
1301 | #define RCC_CFGR_PLLMULL7 RCC_CFGR_PLLMULL7_Msk /*!< PLL input clock*7 */ |
- | 1302 | #define RCC_CFGR_PLLMULL8_Pos (19U) |
|
- | 1303 | #define RCC_CFGR_PLLMULL8_Msk (0x3U << RCC_CFGR_PLLMULL8_Pos) /*!< 0x00180000 */ |
|
1107 | #define RCC_CFGR_PLLMULL8 ((uint32_t)0x00180000) /*!< PLL input clock*8 */ |
1304 | #define RCC_CFGR_PLLMULL8 RCC_CFGR_PLLMULL8_Msk /*!< PLL input clock*8 */ |
- | 1305 | #define RCC_CFGR_PLLMULL9_Pos (18U) |
|
- | 1306 | #define RCC_CFGR_PLLMULL9_Msk (0x7U << RCC_CFGR_PLLMULL9_Pos) /*!< 0x001C0000 */ |
|
1108 | #define RCC_CFGR_PLLMULL9 ((uint32_t)0x001C0000) /*!< PLL input clock*9 */ |
1307 | #define RCC_CFGR_PLLMULL9 RCC_CFGR_PLLMULL9_Msk /*!< PLL input clock*9 */ |
- | 1308 | #define RCC_CFGR_PLLMULL10_Pos (21U) |
|
- | 1309 | #define RCC_CFGR_PLLMULL10_Msk (0x1U << RCC_CFGR_PLLMULL10_Pos) /*!< 0x00200000 */ |
|
1109 | #define RCC_CFGR_PLLMULL10 ((uint32_t)0x00200000) /*!< PLL input clock10 */ |
1310 | #define RCC_CFGR_PLLMULL10 RCC_CFGR_PLLMULL10_Msk /*!< PLL input clock10 */ |
- | 1311 | #define RCC_CFGR_PLLMULL11_Pos (18U) |
|
- | 1312 | #define RCC_CFGR_PLLMULL11_Msk (0x9U << RCC_CFGR_PLLMULL11_Pos) /*!< 0x00240000 */ |
|
1110 | #define RCC_CFGR_PLLMULL11 ((uint32_t)0x00240000) /*!< PLL input clock*11 */ |
1313 | #define RCC_CFGR_PLLMULL11 RCC_CFGR_PLLMULL11_Msk /*!< PLL input clock*11 */ |
- | 1314 | #define RCC_CFGR_PLLMULL12_Pos (19U) |
|
- | 1315 | #define RCC_CFGR_PLLMULL12_Msk (0x5U << RCC_CFGR_PLLMULL12_Pos) /*!< 0x00280000 */ |
|
1111 | #define RCC_CFGR_PLLMULL12 ((uint32_t)0x00280000) /*!< PLL input clock*12 */ |
1316 | #define RCC_CFGR_PLLMULL12 RCC_CFGR_PLLMULL12_Msk /*!< PLL input clock*12 */ |
- | 1317 | #define RCC_CFGR_PLLMULL13_Pos (18U) |
|
- | 1318 | #define RCC_CFGR_PLLMULL13_Msk (0xBU << RCC_CFGR_PLLMULL13_Pos) /*!< 0x002C0000 */ |
|
1112 | #define RCC_CFGR_PLLMULL13 ((uint32_t)0x002C0000) /*!< PLL input clock*13 */ |
1319 | #define RCC_CFGR_PLLMULL13 RCC_CFGR_PLLMULL13_Msk /*!< PLL input clock*13 */ |
- | 1320 | #define RCC_CFGR_PLLMULL14_Pos (20U) |
|
- | 1321 | #define RCC_CFGR_PLLMULL14_Msk (0x3U << RCC_CFGR_PLLMULL14_Pos) /*!< 0x00300000 */ |
|
1113 | #define RCC_CFGR_PLLMULL14 ((uint32_t)0x00300000) /*!< PLL input clock*14 */ |
1322 | #define RCC_CFGR_PLLMULL14 RCC_CFGR_PLLMULL14_Msk /*!< PLL input clock*14 */ |
- | 1323 | #define RCC_CFGR_PLLMULL15_Pos (18U) |
|
- | 1324 | #define RCC_CFGR_PLLMULL15_Msk (0xDU << RCC_CFGR_PLLMULL15_Pos) /*!< 0x00340000 */ |
|
1114 | #define RCC_CFGR_PLLMULL15 ((uint32_t)0x00340000) /*!< PLL input clock*15 */ |
1325 | #define RCC_CFGR_PLLMULL15 RCC_CFGR_PLLMULL15_Msk /*!< PLL input clock*15 */ |
- | 1326 | #define RCC_CFGR_PLLMULL16_Pos (19U) |
|
- | 1327 | #define RCC_CFGR_PLLMULL16_Msk (0x7U << RCC_CFGR_PLLMULL16_Pos) /*!< 0x00380000 */ |
|
1115 | #define RCC_CFGR_PLLMULL16 ((uint32_t)0x00380000) /*!< PLL input clock*16 */ |
1328 | #define RCC_CFGR_PLLMULL16 RCC_CFGR_PLLMULL16_Msk /*!< PLL input clock*16 */ |
1116 | 1329 | ||
1117 | /*!< MCO configuration */ |
1330 | /*!< MCO configuration */ |
- | 1331 | #define RCC_CFGR_MCO_Pos (24U) |
|
- | 1332 | #define RCC_CFGR_MCO_Msk (0x7U << RCC_CFGR_MCO_Pos) /*!< 0x07000000 */ |
|
1118 | #define RCC_CFGR_MCO ((uint32_t)0x07000000) /*!< MCO[2:0] bits (Microcontroller Clock Output) */ |
1333 | #define RCC_CFGR_MCO RCC_CFGR_MCO_Msk /*!< MCO[2:0] bits (Microcontroller Clock Output) */ |
1119 | #define RCC_CFGR_MCO_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
1334 | #define RCC_CFGR_MCO_0 (0x1U << RCC_CFGR_MCO_Pos) /*!< 0x01000000 */ |
1120 | #define RCC_CFGR_MCO_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
1335 | #define RCC_CFGR_MCO_1 (0x2U << RCC_CFGR_MCO_Pos) /*!< 0x02000000 */ |
1121 | #define RCC_CFGR_MCO_2 ((uint32_t)0x04000000) /*!< Bit 2 */ |
1336 | #define RCC_CFGR_MCO_2 (0x4U << RCC_CFGR_MCO_Pos) /*!< 0x04000000 */ |
1122 | 1337 | ||
1123 | #define RCC_CFGR_MCO_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */ |
1338 | #define RCC_CFGR_MCO_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */ |
1124 | #define RCC_CFGR_MCO_SYSCLK ((uint32_t)0x04000000) /*!< System clock selected as MCO source */ |
1339 | #define RCC_CFGR_MCO_SYSCLK ((uint32_t)0x04000000) /*!< System clock selected as MCO source */ |
1125 | #define RCC_CFGR_MCO_HSI ((uint32_t)0x05000000) /*!< HSI clock selected as MCO source */ |
1340 | #define RCC_CFGR_MCO_HSI ((uint32_t)0x05000000) /*!< HSI clock selected as MCO source */ |
1126 | #define RCC_CFGR_MCO_HSE ((uint32_t)0x06000000) /*!< HSE clock selected as MCO source */ |
1341 | #define RCC_CFGR_MCO_HSE ((uint32_t)0x06000000) /*!< HSE clock selected as MCO source */ |
1127 | #define RCC_CFGR_MCO_PLLCLK_DIV2 ((uint32_t)0x07000000) /*!< PLL clock divided by 2 selected as MCO source */ |
1342 | #define RCC_CFGR_MCO_PLLCLK_DIV2 ((uint32_t)0x07000000) /*!< PLL clock divided by 2 selected as MCO source */ |
- | 1343 | ||
- | 1344 | /* Reference defines */ |
|
- | 1345 | #define RCC_CFGR_MCOSEL RCC_CFGR_MCO |
|
- | 1346 | #define RCC_CFGR_MCOSEL_0 RCC_CFGR_MCO_0 |
|
- | 1347 | #define RCC_CFGR_MCOSEL_1 RCC_CFGR_MCO_1 |
|
- | 1348 | #define RCC_CFGR_MCOSEL_2 RCC_CFGR_MCO_2 |
|
- | 1349 | #define RCC_CFGR_MCOSEL_NOCLOCK RCC_CFGR_MCO_NOCLOCK |
|
- | 1350 | #define RCC_CFGR_MCOSEL_SYSCLK RCC_CFGR_MCO_SYSCLK |
|
- | 1351 | #define RCC_CFGR_MCOSEL_HSI RCC_CFGR_MCO_HSI |
|
- | 1352 | #define RCC_CFGR_MCOSEL_HSE RCC_CFGR_MCO_HSE |
|
- | 1353 | #define RCC_CFGR_MCOSEL_PLL_DIV2 RCC_CFGR_MCO_PLLCLK_DIV2 |
|
1128 | 1354 | ||
1129 | /*!<****************** Bit definition for RCC_CIR register ********************/ |
1355 | /*!<****************** Bit definition for RCC_CIR register ********************/ |
- | 1356 | #define RCC_CIR_LSIRDYF_Pos (0U) |
|
- | 1357 | #define RCC_CIR_LSIRDYF_Msk (0x1U << RCC_CIR_LSIRDYF_Pos) /*!< 0x00000001 */ |
|
1130 | #define RCC_CIR_LSIRDYF ((uint32_t)0x00000001) /*!< LSI Ready Interrupt flag */ |
1358 | #define RCC_CIR_LSIRDYF RCC_CIR_LSIRDYF_Msk /*!< LSI Ready Interrupt flag */ |
- | 1359 | #define RCC_CIR_LSERDYF_Pos (1U) |
|
- | 1360 | #define RCC_CIR_LSERDYF_Msk (0x1U << RCC_CIR_LSERDYF_Pos) /*!< 0x00000002 */ |
|
1131 | #define RCC_CIR_LSERDYF ((uint32_t)0x00000002) /*!< LSE Ready Interrupt flag */ |
1361 | #define RCC_CIR_LSERDYF RCC_CIR_LSERDYF_Msk /*!< LSE Ready Interrupt flag */ |
- | 1362 | #define RCC_CIR_HSIRDYF_Pos (2U) |
|
- | 1363 | #define RCC_CIR_HSIRDYF_Msk (0x1U << RCC_CIR_HSIRDYF_Pos) /*!< 0x00000004 */ |
|
1132 | #define RCC_CIR_HSIRDYF ((uint32_t)0x00000004) /*!< HSI Ready Interrupt flag */ |
1364 | #define RCC_CIR_HSIRDYF RCC_CIR_HSIRDYF_Msk /*!< HSI Ready Interrupt flag */ |
- | 1365 | #define RCC_CIR_HSERDYF_Pos (3U) |
|
- | 1366 | #define RCC_CIR_HSERDYF_Msk (0x1U << RCC_CIR_HSERDYF_Pos) /*!< 0x00000008 */ |
|
1133 | #define RCC_CIR_HSERDYF ((uint32_t)0x00000008) /*!< HSE Ready Interrupt flag */ |
1367 | #define RCC_CIR_HSERDYF RCC_CIR_HSERDYF_Msk /*!< HSE Ready Interrupt flag */ |
- | 1368 | #define RCC_CIR_PLLRDYF_Pos (4U) |
|
- | 1369 | #define RCC_CIR_PLLRDYF_Msk (0x1U << RCC_CIR_PLLRDYF_Pos) /*!< 0x00000010 */ |
|
1134 | #define RCC_CIR_PLLRDYF ((uint32_t)0x00000010) /*!< PLL Ready Interrupt flag */ |
1370 | #define RCC_CIR_PLLRDYF RCC_CIR_PLLRDYF_Msk /*!< PLL Ready Interrupt flag */ |
- | 1371 | #define RCC_CIR_CSSF_Pos (7U) |
|
- | 1372 | #define RCC_CIR_CSSF_Msk (0x1U << RCC_CIR_CSSF_Pos) /*!< 0x00000080 */ |
|
1135 | #define RCC_CIR_CSSF ((uint32_t)0x00000080) /*!< Clock Security System Interrupt flag */ |
1373 | #define RCC_CIR_CSSF RCC_CIR_CSSF_Msk /*!< Clock Security System Interrupt flag */ |
- | 1374 | #define RCC_CIR_LSIRDYIE_Pos (8U) |
|
- | 1375 | #define RCC_CIR_LSIRDYIE_Msk (0x1U << RCC_CIR_LSIRDYIE_Pos) /*!< 0x00000100 */ |
|
1136 | #define RCC_CIR_LSIRDYIE ((uint32_t)0x00000100) /*!< LSI Ready Interrupt Enable */ |
1376 | #define RCC_CIR_LSIRDYIE RCC_CIR_LSIRDYIE_Msk /*!< LSI Ready Interrupt Enable */ |
- | 1377 | #define RCC_CIR_LSERDYIE_Pos (9U) |
|
- | 1378 | #define RCC_CIR_LSERDYIE_Msk (0x1U << RCC_CIR_LSERDYIE_Pos) /*!< 0x00000200 */ |
|
1137 | #define RCC_CIR_LSERDYIE ((uint32_t)0x00000200) /*!< LSE Ready Interrupt Enable */ |
1379 | #define RCC_CIR_LSERDYIE RCC_CIR_LSERDYIE_Msk /*!< LSE Ready Interrupt Enable */ |
- | 1380 | #define RCC_CIR_HSIRDYIE_Pos (10U) |
|
- | 1381 | #define RCC_CIR_HSIRDYIE_Msk (0x1U << RCC_CIR_HSIRDYIE_Pos) /*!< 0x00000400 */ |
|
1138 | #define RCC_CIR_HSIRDYIE ((uint32_t)0x00000400) /*!< HSI Ready Interrupt Enable */ |
1382 | #define RCC_CIR_HSIRDYIE RCC_CIR_HSIRDYIE_Msk /*!< HSI Ready Interrupt Enable */ |
- | 1383 | #define RCC_CIR_HSERDYIE_Pos (11U) |
|
- | 1384 | #define RCC_CIR_HSERDYIE_Msk (0x1U << RCC_CIR_HSERDYIE_Pos) /*!< 0x00000800 */ |
|
1139 | #define RCC_CIR_HSERDYIE ((uint32_t)0x00000800) /*!< HSE Ready Interrupt Enable */ |
1385 | #define RCC_CIR_HSERDYIE RCC_CIR_HSERDYIE_Msk /*!< HSE Ready Interrupt Enable */ |
- | 1386 | #define RCC_CIR_PLLRDYIE_Pos (12U) |
|
- | 1387 | #define RCC_CIR_PLLRDYIE_Msk (0x1U << RCC_CIR_PLLRDYIE_Pos) /*!< 0x00001000 */ |
|
1140 | #define RCC_CIR_PLLRDYIE ((uint32_t)0x00001000) /*!< PLL Ready Interrupt Enable */ |
1388 | #define RCC_CIR_PLLRDYIE RCC_CIR_PLLRDYIE_Msk /*!< PLL Ready Interrupt Enable */ |
- | 1389 | #define RCC_CIR_LSIRDYC_Pos (16U) |
|
- | 1390 | #define RCC_CIR_LSIRDYC_Msk (0x1U << RCC_CIR_LSIRDYC_Pos) /*!< 0x00010000 */ |
|
1141 | #define RCC_CIR_LSIRDYC ((uint32_t)0x00010000) /*!< LSI Ready Interrupt Clear */ |
1391 | #define RCC_CIR_LSIRDYC RCC_CIR_LSIRDYC_Msk /*!< LSI Ready Interrupt Clear */ |
- | 1392 | #define RCC_CIR_LSERDYC_Pos (17U) |
|
- | 1393 | #define RCC_CIR_LSERDYC_Msk (0x1U << RCC_CIR_LSERDYC_Pos) /*!< 0x00020000 */ |
|
1142 | #define RCC_CIR_LSERDYC ((uint32_t)0x00020000) /*!< LSE Ready Interrupt Clear */ |
1394 | #define RCC_CIR_LSERDYC RCC_CIR_LSERDYC_Msk /*!< LSE Ready Interrupt Clear */ |
- | 1395 | #define RCC_CIR_HSIRDYC_Pos (18U) |
|
- | 1396 | #define RCC_CIR_HSIRDYC_Msk (0x1U << RCC_CIR_HSIRDYC_Pos) /*!< 0x00040000 */ |
|
1143 | #define RCC_CIR_HSIRDYC ((uint32_t)0x00040000) /*!< HSI Ready Interrupt Clear */ |
1397 | #define RCC_CIR_HSIRDYC RCC_CIR_HSIRDYC_Msk /*!< HSI Ready Interrupt Clear */ |
- | 1398 | #define RCC_CIR_HSERDYC_Pos (19U) |
|
- | 1399 | #define RCC_CIR_HSERDYC_Msk (0x1U << RCC_CIR_HSERDYC_Pos) /*!< 0x00080000 */ |
|
1144 | #define RCC_CIR_HSERDYC ((uint32_t)0x00080000) /*!< HSE Ready Interrupt Clear */ |
1400 | #define RCC_CIR_HSERDYC RCC_CIR_HSERDYC_Msk /*!< HSE Ready Interrupt Clear */ |
- | 1401 | #define RCC_CIR_PLLRDYC_Pos (20U) |
|
- | 1402 | #define RCC_CIR_PLLRDYC_Msk (0x1U << RCC_CIR_PLLRDYC_Pos) /*!< 0x00100000 */ |
|
1145 | #define RCC_CIR_PLLRDYC ((uint32_t)0x00100000) /*!< PLL Ready Interrupt Clear */ |
1403 | #define RCC_CIR_PLLRDYC RCC_CIR_PLLRDYC_Msk /*!< PLL Ready Interrupt Clear */ |
- | 1404 | #define RCC_CIR_CSSC_Pos (23U) |
|
- | 1405 | #define RCC_CIR_CSSC_Msk (0x1U << RCC_CIR_CSSC_Pos) /*!< 0x00800000 */ |
|
1146 | #define RCC_CIR_CSSC ((uint32_t)0x00800000) /*!< Clock Security System Interrupt Clear */ |
1406 | #define RCC_CIR_CSSC RCC_CIR_CSSC_Msk /*!< Clock Security System Interrupt Clear */ |
1147 | 1407 | ||
1148 | 1408 | ||
1149 | /***************** Bit definition for RCC_APB2RSTR register *****************/ |
1409 | /***************** Bit definition for RCC_APB2RSTR register *****************/ |
- | 1410 | #define RCC_APB2RSTR_AFIORST_Pos (0U) |
|
- | 1411 | #define RCC_APB2RSTR_AFIORST_Msk (0x1U << RCC_APB2RSTR_AFIORST_Pos) /*!< 0x00000001 */ |
|
1150 | #define RCC_APB2RSTR_AFIORST ((uint32_t)0x00000001) /*!< Alternate Function I/O reset */ |
1412 | #define RCC_APB2RSTR_AFIORST RCC_APB2RSTR_AFIORST_Msk /*!< Alternate Function I/O reset */ |
- | 1413 | #define RCC_APB2RSTR_IOPARST_Pos (2U) |
|
- | 1414 | #define RCC_APB2RSTR_IOPARST_Msk (0x1U << RCC_APB2RSTR_IOPARST_Pos) /*!< 0x00000004 */ |
|
1151 | #define RCC_APB2RSTR_IOPARST ((uint32_t)0x00000004) /*!< I/O port A reset */ |
1415 | #define RCC_APB2RSTR_IOPARST RCC_APB2RSTR_IOPARST_Msk /*!< I/O port A reset */ |
- | 1416 | #define RCC_APB2RSTR_IOPBRST_Pos (3U) |
|
- | 1417 | #define RCC_APB2RSTR_IOPBRST_Msk (0x1U << RCC_APB2RSTR_IOPBRST_Pos) /*!< 0x00000008 */ |
|
1152 | #define RCC_APB2RSTR_IOPBRST ((uint32_t)0x00000008) /*!< I/O port B reset */ |
1418 | #define RCC_APB2RSTR_IOPBRST RCC_APB2RSTR_IOPBRST_Msk /*!< I/O port B reset */ |
- | 1419 | #define RCC_APB2RSTR_IOPCRST_Pos (4U) |
|
- | 1420 | #define RCC_APB2RSTR_IOPCRST_Msk (0x1U << RCC_APB2RSTR_IOPCRST_Pos) /*!< 0x00000010 */ |
|
1153 | #define RCC_APB2RSTR_IOPCRST ((uint32_t)0x00000010) /*!< I/O port C reset */ |
1421 | #define RCC_APB2RSTR_IOPCRST RCC_APB2RSTR_IOPCRST_Msk /*!< I/O port C reset */ |
- | 1422 | #define RCC_APB2RSTR_IOPDRST_Pos (5U) |
|
- | 1423 | #define RCC_APB2RSTR_IOPDRST_Msk (0x1U << RCC_APB2RSTR_IOPDRST_Pos) /*!< 0x00000020 */ |
|
1154 | #define RCC_APB2RSTR_IOPDRST ((uint32_t)0x00000020) /*!< I/O port D reset */ |
1424 | #define RCC_APB2RSTR_IOPDRST RCC_APB2RSTR_IOPDRST_Msk /*!< I/O port D reset */ |
- | 1425 | #define RCC_APB2RSTR_ADC1RST_Pos (9U) |
|
- | 1426 | #define RCC_APB2RSTR_ADC1RST_Msk (0x1U << RCC_APB2RSTR_ADC1RST_Pos) /*!< 0x00000200 */ |
|
1155 | #define RCC_APB2RSTR_ADC1RST ((uint32_t)0x00000200) /*!< ADC 1 interface reset */ |
1427 | #define RCC_APB2RSTR_ADC1RST RCC_APB2RSTR_ADC1RST_Msk /*!< ADC 1 interface reset */ |
1156 | 1428 | ||
1157 | 1429 | ||
- | 1430 | #define RCC_APB2RSTR_TIM1RST_Pos (11U) |
|
- | 1431 | #define RCC_APB2RSTR_TIM1RST_Msk (0x1U << RCC_APB2RSTR_TIM1RST_Pos) /*!< 0x00000800 */ |
|
1158 | #define RCC_APB2RSTR_TIM1RST ((uint32_t)0x00000800) /*!< TIM1 Timer reset */ |
1432 | #define RCC_APB2RSTR_TIM1RST RCC_APB2RSTR_TIM1RST_Msk /*!< TIM1 Timer reset */ |
- | 1433 | #define RCC_APB2RSTR_SPI1RST_Pos (12U) |
|
- | 1434 | #define RCC_APB2RSTR_SPI1RST_Msk (0x1U << RCC_APB2RSTR_SPI1RST_Pos) /*!< 0x00001000 */ |
|
1159 | #define RCC_APB2RSTR_SPI1RST ((uint32_t)0x00001000) /*!< SPI 1 reset */ |
1435 | #define RCC_APB2RSTR_SPI1RST RCC_APB2RSTR_SPI1RST_Msk /*!< SPI 1 reset */ |
- | 1436 | #define RCC_APB2RSTR_USART1RST_Pos (14U) |
|
- | 1437 | #define RCC_APB2RSTR_USART1RST_Msk (0x1U << RCC_APB2RSTR_USART1RST_Pos) /*!< 0x00004000 */ |
|
1160 | #define RCC_APB2RSTR_USART1RST ((uint32_t)0x00004000) /*!< USART1 reset */ |
1438 | #define RCC_APB2RSTR_USART1RST RCC_APB2RSTR_USART1RST_Msk /*!< USART1 reset */ |
1161 | 1439 | ||
1162 | 1440 | ||
- | 1441 | #define RCC_APB2RSTR_IOPERST_Pos (6U) |
|
- | 1442 | #define RCC_APB2RSTR_IOPERST_Msk (0x1U << RCC_APB2RSTR_IOPERST_Pos) /*!< 0x00000040 */ |
|
1163 | #define RCC_APB2RSTR_IOPERST ((uint32_t)0x00000040) /*!< I/O port E reset */ |
1443 | #define RCC_APB2RSTR_IOPERST RCC_APB2RSTR_IOPERST_Msk /*!< I/O port E reset */ |
1164 | 1444 | ||
- | 1445 | #define RCC_APB2RSTR_IOPFRST_Pos (7U) |
|
- | 1446 | #define RCC_APB2RSTR_IOPFRST_Msk (0x1U << RCC_APB2RSTR_IOPFRST_Pos) /*!< 0x00000080 */ |
|
1165 | #define RCC_APB2RSTR_IOPFRST ((uint32_t)0x00000080) /*!< I/O port F reset */ |
1447 | #define RCC_APB2RSTR_IOPFRST RCC_APB2RSTR_IOPFRST_Msk /*!< I/O port F reset */ |
- | 1448 | #define RCC_APB2RSTR_IOPGRST_Pos (8U) |
|
- | 1449 | #define RCC_APB2RSTR_IOPGRST_Msk (0x1U << RCC_APB2RSTR_IOPGRST_Pos) /*!< 0x00000100 */ |
|
1166 | #define RCC_APB2RSTR_IOPGRST ((uint32_t)0x00000100) /*!< I/O port G reset */ |
1450 | #define RCC_APB2RSTR_IOPGRST RCC_APB2RSTR_IOPGRST_Msk /*!< I/O port G reset */ |
1167 | 1451 | ||
1168 | 1452 | ||
1169 | 1453 | ||
1170 | /***************** Bit definition for RCC_APB1RSTR register *****************/ |
1454 | /***************** Bit definition for RCC_APB1RSTR register *****************/ |
- | 1455 | #define RCC_APB1RSTR_TIM2RST_Pos (0U) |
|
- | 1456 | #define RCC_APB1RSTR_TIM2RST_Msk (0x1U << RCC_APB1RSTR_TIM2RST_Pos) /*!< 0x00000001 */ |
|
1171 | #define RCC_APB1RSTR_TIM2RST ((uint32_t)0x00000001) /*!< Timer 2 reset */ |
1457 | #define RCC_APB1RSTR_TIM2RST RCC_APB1RSTR_TIM2RST_Msk /*!< Timer 2 reset */ |
- | 1458 | #define RCC_APB1RSTR_TIM3RST_Pos (1U) |
|
- | 1459 | #define RCC_APB1RSTR_TIM3RST_Msk (0x1U << RCC_APB1RSTR_TIM3RST_Pos) /*!< 0x00000002 */ |
|
1172 | #define RCC_APB1RSTR_TIM3RST ((uint32_t)0x00000002) /*!< Timer 3 reset */ |
1460 | #define RCC_APB1RSTR_TIM3RST RCC_APB1RSTR_TIM3RST_Msk /*!< Timer 3 reset */ |
- | 1461 | #define RCC_APB1RSTR_WWDGRST_Pos (11U) |
|
- | 1462 | #define RCC_APB1RSTR_WWDGRST_Msk (0x1U << RCC_APB1RSTR_WWDGRST_Pos) /*!< 0x00000800 */ |
|
1173 | #define RCC_APB1RSTR_WWDGRST ((uint32_t)0x00000800) /*!< Window Watchdog reset */ |
1463 | #define RCC_APB1RSTR_WWDGRST RCC_APB1RSTR_WWDGRST_Msk /*!< Window Watchdog reset */ |
- | 1464 | #define RCC_APB1RSTR_USART2RST_Pos (17U) |
|
- | 1465 | #define RCC_APB1RSTR_USART2RST_Msk (0x1U << RCC_APB1RSTR_USART2RST_Pos) /*!< 0x00020000 */ |
|
1174 | #define RCC_APB1RSTR_USART2RST ((uint32_t)0x00020000) /*!< USART 2 reset */ |
1466 | #define RCC_APB1RSTR_USART2RST RCC_APB1RSTR_USART2RST_Msk /*!< USART 2 reset */ |
- | 1467 | #define RCC_APB1RSTR_I2C1RST_Pos (21U) |
|
- | 1468 | #define RCC_APB1RSTR_I2C1RST_Msk (0x1U << RCC_APB1RSTR_I2C1RST_Pos) /*!< 0x00200000 */ |
|
1175 | #define RCC_APB1RSTR_I2C1RST ((uint32_t)0x00200000) /*!< I2C 1 reset */ |
1469 | #define RCC_APB1RSTR_I2C1RST RCC_APB1RSTR_I2C1RST_Msk /*!< I2C 1 reset */ |
1176 | 1470 | ||
1177 | 1471 | ||
- | 1472 | #define RCC_APB1RSTR_BKPRST_Pos (27U) |
|
- | 1473 | #define RCC_APB1RSTR_BKPRST_Msk (0x1U << RCC_APB1RSTR_BKPRST_Pos) /*!< 0x08000000 */ |
|
1178 | #define RCC_APB1RSTR_BKPRST ((uint32_t)0x08000000) /*!< Backup interface reset */ |
1474 | #define RCC_APB1RSTR_BKPRST RCC_APB1RSTR_BKPRST_Msk /*!< Backup interface reset */ |
- | 1475 | #define RCC_APB1RSTR_PWRRST_Pos (28U) |
|
- | 1476 | #define RCC_APB1RSTR_PWRRST_Msk (0x1U << RCC_APB1RSTR_PWRRST_Pos) /*!< 0x10000000 */ |
|
1179 | #define RCC_APB1RSTR_PWRRST ((uint32_t)0x10000000) /*!< Power interface reset */ |
1477 | #define RCC_APB1RSTR_PWRRST RCC_APB1RSTR_PWRRST_Msk /*!< Power interface reset */ |
- | 1478 | ||
- | 1479 | #define RCC_APB1RSTR_TIM4RST_Pos (2U) |
|
- | 1480 | #define RCC_APB1RSTR_TIM4RST_Msk (0x1U << RCC_APB1RSTR_TIM4RST_Pos) /*!< 0x00000004 */ |
|
- | 1481 | #define RCC_APB1RSTR_TIM4RST RCC_APB1RSTR_TIM4RST_Msk /*!< Timer 4 reset */ |
|
- | 1482 | #define RCC_APB1RSTR_SPI2RST_Pos (14U) |
|
- | 1483 | #define RCC_APB1RSTR_SPI2RST_Msk (0x1U << RCC_APB1RSTR_SPI2RST_Pos) /*!< 0x00004000 */ |
|
- | 1484 | #define RCC_APB1RSTR_SPI2RST RCC_APB1RSTR_SPI2RST_Msk /*!< SPI 2 reset */ |
|
- | 1485 | #define RCC_APB1RSTR_USART3RST_Pos (18U) |
|
- | 1486 | #define RCC_APB1RSTR_USART3RST_Msk (0x1U << RCC_APB1RSTR_USART3RST_Pos) /*!< 0x00040000 */ |
|
- | 1487 | #define RCC_APB1RSTR_USART3RST RCC_APB1RSTR_USART3RST_Msk /*!< USART 3 reset */ |
|
- | 1488 | #define RCC_APB1RSTR_I2C2RST_Pos (22U) |
|
- | 1489 | #define RCC_APB1RSTR_I2C2RST_Msk (0x1U << RCC_APB1RSTR_I2C2RST_Pos) /*!< 0x00400000 */ |
|
- | 1490 | #define RCC_APB1RSTR_I2C2RST RCC_APB1RSTR_I2C2RST_Msk /*!< I2C 2 reset */ |
|
- | 1491 | ||
- | 1492 | ||
- | 1493 | #define RCC_APB1RSTR_TIM5RST_Pos (3U) |
|
- | 1494 | #define RCC_APB1RSTR_TIM5RST_Msk (0x1U << RCC_APB1RSTR_TIM5RST_Pos) /*!< 0x00000008 */ |
|
- | 1495 | #define RCC_APB1RSTR_TIM5RST RCC_APB1RSTR_TIM5RST_Msk /*!< Timer 5 reset */ |
|
- | 1496 | #define RCC_APB1RSTR_TIM6RST_Pos (4U) |
|
- | 1497 | #define RCC_APB1RSTR_TIM6RST_Msk (0x1U << RCC_APB1RSTR_TIM6RST_Pos) /*!< 0x00000010 */ |
|
- | 1498 | #define RCC_APB1RSTR_TIM6RST RCC_APB1RSTR_TIM6RST_Msk /*!< Timer 6 reset */ |
|
- | 1499 | #define RCC_APB1RSTR_TIM7RST_Pos (5U) |
|
- | 1500 | #define RCC_APB1RSTR_TIM7RST_Msk (0x1U << RCC_APB1RSTR_TIM7RST_Pos) /*!< 0x00000020 */ |
|
- | 1501 | #define RCC_APB1RSTR_TIM7RST RCC_APB1RSTR_TIM7RST_Msk /*!< Timer 7 reset */ |
|
- | 1502 | #define RCC_APB1RSTR_SPI3RST_Pos (15U) |
|
- | 1503 | #define RCC_APB1RSTR_SPI3RST_Msk (0x1U << RCC_APB1RSTR_SPI3RST_Pos) /*!< 0x00008000 */ |
|
- | 1504 | #define RCC_APB1RSTR_SPI3RST RCC_APB1RSTR_SPI3RST_Msk /*!< SPI 3 reset */ |
|
- | 1505 | #define RCC_APB1RSTR_UART4RST_Pos (19U) |
|
- | 1506 | #define RCC_APB1RSTR_UART4RST_Msk (0x1U << RCC_APB1RSTR_UART4RST_Pos) /*!< 0x00080000 */ |
|
- | 1507 | #define RCC_APB1RSTR_UART4RST RCC_APB1RSTR_UART4RST_Msk /*!< UART 4 reset */ |
|
- | 1508 | #define RCC_APB1RSTR_UART5RST_Pos (20U) |
|
- | 1509 | #define RCC_APB1RSTR_UART5RST_Msk (0x1U << RCC_APB1RSTR_UART5RST_Pos) /*!< 0x00100000 */ |
|
- | 1510 | #define RCC_APB1RSTR_UART5RST RCC_APB1RSTR_UART5RST_Msk /*!< UART 5 reset */ |
|
1180 | 1511 | ||
1181 | #define RCC_APB1RSTR_TIM4RST ((uint32_t)0x00000004) /*!< Timer 4 reset */ |
- | |
1182 | #define RCC_APB1RSTR_SPI2RST ((uint32_t)0x00004000) /*!< SPI 2 reset */ |
- | |
1183 | #define RCC_APB1RSTR_USART3RST ((uint32_t)0x00040000) /*!< USART 3 reset */ |
- | |
1184 | #define RCC_APB1RSTR_I2C2RST ((uint32_t)0x00400000) /*!< I2C 2 reset */ |
- | |
1185 | 1512 | ||
1186 | 1513 | ||
1187 | #define RCC_APB1RSTR_TIM5RST ((uint32_t)0x00000008) /*!< Timer 5 reset */ |
- | |
1188 | #define RCC_APB1RSTR_TIM6RST ((uint32_t)0x00000010) /*!< Timer 6 reset */ |
- | |
1189 | #define RCC_APB1RSTR_TIM7RST ((uint32_t)0x00000020) /*!< Timer 7 reset */ |
- | |
1190 | #define RCC_APB1RSTR_SPI3RST ((uint32_t)0x00008000) /*!< SPI 3 reset */ |
- | |
1191 | #define RCC_APB1RSTR_UART4RST ((uint32_t)0x00080000) /*!< UART 4 reset */ |
- | |
1192 | #define RCC_APB1RSTR_UART5RST ((uint32_t)0x00100000) /*!< UART 5 reset */ |
- | |
1193 | 1514 | ||
1194 | - | ||
1195 | - | ||
1196 | - | ||
- | 1515 | #define RCC_APB1RSTR_DACRST_Pos (29U) |
|
- | 1516 | #define RCC_APB1RSTR_DACRST_Msk (0x1U << RCC_APB1RSTR_DACRST_Pos) /*!< 0x20000000 */ |
|
1197 | #define RCC_APB1RSTR_DACRST ((uint32_t)0x20000000) /*!< DAC interface reset */ |
1517 | #define RCC_APB1RSTR_DACRST RCC_APB1RSTR_DACRST_Msk /*!< DAC interface reset */ |
1198 | 1518 | ||
1199 | /****************** Bit definition for RCC_AHBENR register ******************/ |
1519 | /****************** Bit definition for RCC_AHBENR register ******************/ |
- | 1520 | #define RCC_AHBENR_DMA1EN_Pos (0U) |
|
- | 1521 | #define RCC_AHBENR_DMA1EN_Msk (0x1U << RCC_AHBENR_DMA1EN_Pos) /*!< 0x00000001 */ |
|
1200 | #define RCC_AHBENR_DMA1EN ((uint32_t)0x00000001) /*!< DMA1 clock enable */ |
1522 | #define RCC_AHBENR_DMA1EN RCC_AHBENR_DMA1EN_Msk /*!< DMA1 clock enable */ |
- | 1523 | #define RCC_AHBENR_SRAMEN_Pos (2U) |
|
- | 1524 | #define RCC_AHBENR_SRAMEN_Msk (0x1U << RCC_AHBENR_SRAMEN_Pos) /*!< 0x00000004 */ |
|
1201 | #define RCC_AHBENR_SRAMEN ((uint32_t)0x00000004) /*!< SRAM interface clock enable */ |
1525 | #define RCC_AHBENR_SRAMEN RCC_AHBENR_SRAMEN_Msk /*!< SRAM interface clock enable */ |
- | 1526 | #define RCC_AHBENR_FLITFEN_Pos (4U) |
|
- | 1527 | #define RCC_AHBENR_FLITFEN_Msk (0x1U << RCC_AHBENR_FLITFEN_Pos) /*!< 0x00000010 */ |
|
1202 | #define RCC_AHBENR_FLITFEN ((uint32_t)0x00000010) /*!< FLITF clock enable */ |
1528 | #define RCC_AHBENR_FLITFEN RCC_AHBENR_FLITFEN_Msk /*!< FLITF clock enable */ |
- | 1529 | #define RCC_AHBENR_CRCEN_Pos (6U) |
|
- | 1530 | #define RCC_AHBENR_CRCEN_Msk (0x1U << RCC_AHBENR_CRCEN_Pos) /*!< 0x00000040 */ |
|
1203 | #define RCC_AHBENR_CRCEN ((uint32_t)0x00000040) /*!< CRC clock enable */ |
1531 | #define RCC_AHBENR_CRCEN RCC_AHBENR_CRCEN_Msk /*!< CRC clock enable */ |
1204 | 1532 | ||
- | 1533 | #define RCC_AHBENR_DMA2EN_Pos (1U) |
|
- | 1534 | #define RCC_AHBENR_DMA2EN_Msk (0x1U << RCC_AHBENR_DMA2EN_Pos) /*!< 0x00000002 */ |
|
1205 | #define RCC_AHBENR_DMA2EN ((uint32_t)0x00000002) /*!< DMA2 clock enable */ |
1535 | #define RCC_AHBENR_DMA2EN RCC_AHBENR_DMA2EN_Msk /*!< DMA2 clock enable */ |
1206 | 1536 | ||
- | 1537 | #define RCC_AHBENR_FSMCEN_Pos (8U) |
|
- | 1538 | #define RCC_AHBENR_FSMCEN_Msk (0x1U << RCC_AHBENR_FSMCEN_Pos) /*!< 0x00000100 */ |
|
1207 | #define RCC_AHBENR_FSMCEN ((uint32_t)0x00000100) /*!< FSMC clock enable */ |
1539 | #define RCC_AHBENR_FSMCEN RCC_AHBENR_FSMCEN_Msk /*!< FSMC clock enable */ |
1208 | 1540 | ||
1209 | 1541 | ||
1210 | /****************** Bit definition for RCC_APB2ENR register *****************/ |
1542 | /****************** Bit definition for RCC_APB2ENR register *****************/ |
- | 1543 | #define RCC_APB2ENR_AFIOEN_Pos (0U) |
|
- | 1544 | #define RCC_APB2ENR_AFIOEN_Msk (0x1U << RCC_APB2ENR_AFIOEN_Pos) /*!< 0x00000001 */ |
|
1211 | #define RCC_APB2ENR_AFIOEN ((uint32_t)0x00000001) /*!< Alternate Function I/O clock enable */ |
1545 | #define RCC_APB2ENR_AFIOEN RCC_APB2ENR_AFIOEN_Msk /*!< Alternate Function I/O clock enable */ |
- | 1546 | #define RCC_APB2ENR_IOPAEN_Pos (2U) |
|
- | 1547 | #define RCC_APB2ENR_IOPAEN_Msk (0x1U << RCC_APB2ENR_IOPAEN_Pos) /*!< 0x00000004 */ |
|
1212 | #define RCC_APB2ENR_IOPAEN ((uint32_t)0x00000004) /*!< I/O port A clock enable */ |
1548 | #define RCC_APB2ENR_IOPAEN RCC_APB2ENR_IOPAEN_Msk /*!< I/O port A clock enable */ |
- | 1549 | #define RCC_APB2ENR_IOPBEN_Pos (3U) |
|
- | 1550 | #define RCC_APB2ENR_IOPBEN_Msk (0x1U << RCC_APB2ENR_IOPBEN_Pos) /*!< 0x00000008 */ |
|
1213 | #define RCC_APB2ENR_IOPBEN ((uint32_t)0x00000008) /*!< I/O port B clock enable */ |
1551 | #define RCC_APB2ENR_IOPBEN RCC_APB2ENR_IOPBEN_Msk /*!< I/O port B clock enable */ |
- | 1552 | #define RCC_APB2ENR_IOPCEN_Pos (4U) |
|
- | 1553 | #define RCC_APB2ENR_IOPCEN_Msk (0x1U << RCC_APB2ENR_IOPCEN_Pos) /*!< 0x00000010 */ |
|
1214 | #define RCC_APB2ENR_IOPCEN ((uint32_t)0x00000010) /*!< I/O port C clock enable */ |
1554 | #define RCC_APB2ENR_IOPCEN RCC_APB2ENR_IOPCEN_Msk /*!< I/O port C clock enable */ |
- | 1555 | #define RCC_APB2ENR_IOPDEN_Pos (5U) |
|
- | 1556 | #define RCC_APB2ENR_IOPDEN_Msk (0x1U << RCC_APB2ENR_IOPDEN_Pos) /*!< 0x00000020 */ |
|
1215 | #define RCC_APB2ENR_IOPDEN ((uint32_t)0x00000020) /*!< I/O port D clock enable */ |
1557 | #define RCC_APB2ENR_IOPDEN RCC_APB2ENR_IOPDEN_Msk /*!< I/O port D clock enable */ |
- | 1558 | #define RCC_APB2ENR_ADC1EN_Pos (9U) |
|
- | 1559 | #define RCC_APB2ENR_ADC1EN_Msk (0x1U << RCC_APB2ENR_ADC1EN_Pos) /*!< 0x00000200 */ |
|
1216 | #define RCC_APB2ENR_ADC1EN ((uint32_t)0x00000200) /*!< ADC 1 interface clock enable */ |
1560 | #define RCC_APB2ENR_ADC1EN RCC_APB2ENR_ADC1EN_Msk /*!< ADC 1 interface clock enable */ |
1217 | 1561 | ||
1218 | 1562 | ||
- | 1563 | #define RCC_APB2ENR_TIM1EN_Pos (11U) |
|
- | 1564 | #define RCC_APB2ENR_TIM1EN_Msk (0x1U << RCC_APB2ENR_TIM1EN_Pos) /*!< 0x00000800 */ |
|
1219 | #define RCC_APB2ENR_TIM1EN ((uint32_t)0x00000800) /*!< TIM1 Timer clock enable */ |
1565 | #define RCC_APB2ENR_TIM1EN RCC_APB2ENR_TIM1EN_Msk /*!< TIM1 Timer clock enable */ |
- | 1566 | #define RCC_APB2ENR_SPI1EN_Pos (12U) |
|
- | 1567 | #define RCC_APB2ENR_SPI1EN_Msk (0x1U << RCC_APB2ENR_SPI1EN_Pos) /*!< 0x00001000 */ |
|
1220 | #define RCC_APB2ENR_SPI1EN ((uint32_t)0x00001000) /*!< SPI 1 clock enable */ |
1568 | #define RCC_APB2ENR_SPI1EN RCC_APB2ENR_SPI1EN_Msk /*!< SPI 1 clock enable */ |
- | 1569 | #define RCC_APB2ENR_USART1EN_Pos (14U) |
|
- | 1570 | #define RCC_APB2ENR_USART1EN_Msk (0x1U << RCC_APB2ENR_USART1EN_Pos) /*!< 0x00004000 */ |
|
1221 | #define RCC_APB2ENR_USART1EN ((uint32_t)0x00004000) /*!< USART1 clock enable */ |
1571 | #define RCC_APB2ENR_USART1EN RCC_APB2ENR_USART1EN_Msk /*!< USART1 clock enable */ |
1222 | 1572 | ||
1223 | 1573 | ||
- | 1574 | #define RCC_APB2ENR_IOPEEN_Pos (6U) |
|
- | 1575 | #define RCC_APB2ENR_IOPEEN_Msk (0x1U << RCC_APB2ENR_IOPEEN_Pos) /*!< 0x00000040 */ |
|
1224 | #define RCC_APB2ENR_IOPEEN ((uint32_t)0x00000040) /*!< I/O port E clock enable */ |
1576 | #define RCC_APB2ENR_IOPEEN RCC_APB2ENR_IOPEEN_Msk /*!< I/O port E clock enable */ |
1225 | 1577 | ||
- | 1578 | #define RCC_APB2ENR_IOPFEN_Pos (7U) |
|
- | 1579 | #define RCC_APB2ENR_IOPFEN_Msk (0x1U << RCC_APB2ENR_IOPFEN_Pos) /*!< 0x00000080 */ |
|
1226 | #define RCC_APB2ENR_IOPFEN ((uint32_t)0x00000080) /*!< I/O port F clock enable */ |
1580 | #define RCC_APB2ENR_IOPFEN RCC_APB2ENR_IOPFEN_Msk /*!< I/O port F clock enable */ |
- | 1581 | #define RCC_APB2ENR_IOPGEN_Pos (8U) |
|
- | 1582 | #define RCC_APB2ENR_IOPGEN_Msk (0x1U << RCC_APB2ENR_IOPGEN_Pos) /*!< 0x00000100 */ |
|
1227 | #define RCC_APB2ENR_IOPGEN ((uint32_t)0x00000100) /*!< I/O port G clock enable */ |
1583 | #define RCC_APB2ENR_IOPGEN RCC_APB2ENR_IOPGEN_Msk /*!< I/O port G clock enable */ |
1228 | 1584 | ||
1229 | 1585 | ||
1230 | 1586 | ||
1231 | /***************** Bit definition for RCC_APB1ENR register ******************/ |
1587 | /***************** Bit definition for RCC_APB1ENR register ******************/ |
- | 1588 | #define RCC_APB1ENR_TIM2EN_Pos (0U) |
|
- | 1589 | #define RCC_APB1ENR_TIM2EN_Msk (0x1U << RCC_APB1ENR_TIM2EN_Pos) /*!< 0x00000001 */ |
|
1232 | #define RCC_APB1ENR_TIM2EN ((uint32_t)0x00000001) /*!< Timer 2 clock enabled*/ |
1590 | #define RCC_APB1ENR_TIM2EN RCC_APB1ENR_TIM2EN_Msk /*!< Timer 2 clock enabled*/ |
- | 1591 | #define RCC_APB1ENR_TIM3EN_Pos (1U) |
|
- | 1592 | #define RCC_APB1ENR_TIM3EN_Msk (0x1U << RCC_APB1ENR_TIM3EN_Pos) /*!< 0x00000002 */ |
|
1233 | #define RCC_APB1ENR_TIM3EN ((uint32_t)0x00000002) /*!< Timer 3 clock enable */ |
1593 | #define RCC_APB1ENR_TIM3EN RCC_APB1ENR_TIM3EN_Msk /*!< Timer 3 clock enable */ |
- | 1594 | #define RCC_APB1ENR_WWDGEN_Pos (11U) |
|
- | 1595 | #define RCC_APB1ENR_WWDGEN_Msk (0x1U << RCC_APB1ENR_WWDGEN_Pos) /*!< 0x00000800 */ |
|
1234 | #define RCC_APB1ENR_WWDGEN ((uint32_t)0x00000800) /*!< Window Watchdog clock enable */ |
1596 | #define RCC_APB1ENR_WWDGEN RCC_APB1ENR_WWDGEN_Msk /*!< Window Watchdog clock enable */ |
- | 1597 | #define RCC_APB1ENR_USART2EN_Pos (17U) |
|
- | 1598 | #define RCC_APB1ENR_USART2EN_Msk (0x1U << RCC_APB1ENR_USART2EN_Pos) /*!< 0x00020000 */ |
|
1235 | #define RCC_APB1ENR_USART2EN ((uint32_t)0x00020000) /*!< USART 2 clock enable */ |
1599 | #define RCC_APB1ENR_USART2EN RCC_APB1ENR_USART2EN_Msk /*!< USART 2 clock enable */ |
- | 1600 | #define RCC_APB1ENR_I2C1EN_Pos (21U) |
|
- | 1601 | #define RCC_APB1ENR_I2C1EN_Msk (0x1U << RCC_APB1ENR_I2C1EN_Pos) /*!< 0x00200000 */ |
|
1236 | #define RCC_APB1ENR_I2C1EN ((uint32_t)0x00200000) /*!< I2C 1 clock enable */ |
1602 | #define RCC_APB1ENR_I2C1EN RCC_APB1ENR_I2C1EN_Msk /*!< I2C 1 clock enable */ |
1237 | 1603 | ||
1238 | 1604 | ||
- | 1605 | #define RCC_APB1ENR_BKPEN_Pos (27U) |
|
- | 1606 | #define RCC_APB1ENR_BKPEN_Msk (0x1U << RCC_APB1ENR_BKPEN_Pos) /*!< 0x08000000 */ |
|
1239 | #define RCC_APB1ENR_BKPEN ((uint32_t)0x08000000) /*!< Backup interface clock enable */ |
1607 | #define RCC_APB1ENR_BKPEN RCC_APB1ENR_BKPEN_Msk /*!< Backup interface clock enable */ |
- | 1608 | #define RCC_APB1ENR_PWREN_Pos (28U) |
|
- | 1609 | #define RCC_APB1ENR_PWREN_Msk (0x1U << RCC_APB1ENR_PWREN_Pos) /*!< 0x10000000 */ |
|
1240 | #define RCC_APB1ENR_PWREN ((uint32_t)0x10000000) /*!< Power interface clock enable */ |
1610 | #define RCC_APB1ENR_PWREN RCC_APB1ENR_PWREN_Msk /*!< Power interface clock enable */ |
- | 1611 | ||
- | 1612 | #define RCC_APB1ENR_TIM4EN_Pos (2U) |
|
- | 1613 | #define RCC_APB1ENR_TIM4EN_Msk (0x1U << RCC_APB1ENR_TIM4EN_Pos) /*!< 0x00000004 */ |
|
- | 1614 | #define RCC_APB1ENR_TIM4EN RCC_APB1ENR_TIM4EN_Msk /*!< Timer 4 clock enable */ |
|
- | 1615 | #define RCC_APB1ENR_SPI2EN_Pos (14U) |
|
- | 1616 | #define RCC_APB1ENR_SPI2EN_Msk (0x1U << RCC_APB1ENR_SPI2EN_Pos) /*!< 0x00004000 */ |
|
- | 1617 | #define RCC_APB1ENR_SPI2EN RCC_APB1ENR_SPI2EN_Msk /*!< SPI 2 clock enable */ |
|
- | 1618 | #define RCC_APB1ENR_USART3EN_Pos (18U) |
|
- | 1619 | #define RCC_APB1ENR_USART3EN_Msk (0x1U << RCC_APB1ENR_USART3EN_Pos) /*!< 0x00040000 */ |
|
- | 1620 | #define RCC_APB1ENR_USART3EN RCC_APB1ENR_USART3EN_Msk /*!< USART 3 clock enable */ |
|
- | 1621 | #define RCC_APB1ENR_I2C2EN_Pos (22U) |
|
- | 1622 | #define RCC_APB1ENR_I2C2EN_Msk (0x1U << RCC_APB1ENR_I2C2EN_Pos) /*!< 0x00400000 */ |
|
- | 1623 | #define RCC_APB1ENR_I2C2EN RCC_APB1ENR_I2C2EN_Msk /*!< I2C 2 clock enable */ |
|
- | 1624 | ||
- | 1625 | ||
- | 1626 | #define RCC_APB1ENR_TIM5EN_Pos (3U) |
|
- | 1627 | #define RCC_APB1ENR_TIM5EN_Msk (0x1U << RCC_APB1ENR_TIM5EN_Pos) /*!< 0x00000008 */ |
|
- | 1628 | #define RCC_APB1ENR_TIM5EN RCC_APB1ENR_TIM5EN_Msk /*!< Timer 5 clock enable */ |
|
- | 1629 | #define RCC_APB1ENR_TIM6EN_Pos (4U) |
|
- | 1630 | #define RCC_APB1ENR_TIM6EN_Msk (0x1U << RCC_APB1ENR_TIM6EN_Pos) /*!< 0x00000010 */ |
|
- | 1631 | #define RCC_APB1ENR_TIM6EN RCC_APB1ENR_TIM6EN_Msk /*!< Timer 6 clock enable */ |
|
- | 1632 | #define RCC_APB1ENR_TIM7EN_Pos (5U) |
|
- | 1633 | #define RCC_APB1ENR_TIM7EN_Msk (0x1U << RCC_APB1ENR_TIM7EN_Pos) /*!< 0x00000020 */ |
|
- | 1634 | #define RCC_APB1ENR_TIM7EN RCC_APB1ENR_TIM7EN_Msk /*!< Timer 7 clock enable */ |
|
- | 1635 | #define RCC_APB1ENR_SPI3EN_Pos (15U) |
|
- | 1636 | #define RCC_APB1ENR_SPI3EN_Msk (0x1U << RCC_APB1ENR_SPI3EN_Pos) /*!< 0x00008000 */ |
|
- | 1637 | #define RCC_APB1ENR_SPI3EN RCC_APB1ENR_SPI3EN_Msk /*!< SPI 3 clock enable */ |
|
- | 1638 | #define RCC_APB1ENR_UART4EN_Pos (19U) |
|
- | 1639 | #define RCC_APB1ENR_UART4EN_Msk (0x1U << RCC_APB1ENR_UART4EN_Pos) /*!< 0x00080000 */ |
|
- | 1640 | #define RCC_APB1ENR_UART4EN RCC_APB1ENR_UART4EN_Msk /*!< UART 4 clock enable */ |
|
- | 1641 | #define RCC_APB1ENR_UART5EN_Pos (20U) |
|
- | 1642 | #define RCC_APB1ENR_UART5EN_Msk (0x1U << RCC_APB1ENR_UART5EN_Pos) /*!< 0x00100000 */ |
|
- | 1643 | #define RCC_APB1ENR_UART5EN RCC_APB1ENR_UART5EN_Msk /*!< UART 5 clock enable */ |
|
1241 | 1644 | ||
1242 | #define RCC_APB1ENR_TIM4EN ((uint32_t)0x00000004) /*!< Timer 4 clock enable */ |
- | |
1243 | #define RCC_APB1ENR_SPI2EN ((uint32_t)0x00004000) /*!< SPI 2 clock enable */ |
- | |
1244 | #define RCC_APB1ENR_USART3EN ((uint32_t)0x00040000) /*!< USART 3 clock enable */ |
- | |
1245 | #define RCC_APB1ENR_I2C2EN ((uint32_t)0x00400000) /*!< I2C 2 clock enable */ |
- | |
1246 | 1645 | ||
1247 | 1646 | ||
1248 | #define RCC_APB1ENR_TIM5EN ((uint32_t)0x00000008) /*!< Timer 5 clock enable */ |
- | |
1249 | #define RCC_APB1ENR_TIM6EN ((uint32_t)0x00000010) /*!< Timer 6 clock enable */ |
- | |
1250 | #define RCC_APB1ENR_TIM7EN ((uint32_t)0x00000020) /*!< Timer 7 clock enable */ |
- | |
1251 | #define RCC_APB1ENR_SPI3EN ((uint32_t)0x00008000) /*!< SPI 3 clock enable */ |
- | |
1252 | #define RCC_APB1ENR_UART4EN ((uint32_t)0x00080000) /*!< UART 4 clock enable */ |
- | |
1253 | #define RCC_APB1ENR_UART5EN ((uint32_t)0x00100000) /*!< UART 5 clock enable */ |
- | |
1254 | 1647 | ||
1255 | - | ||
1256 | - | ||
1257 | - | ||
- | 1648 | #define RCC_APB1ENR_DACEN_Pos (29U) |
|
- | 1649 | #define RCC_APB1ENR_DACEN_Msk (0x1U << RCC_APB1ENR_DACEN_Pos) /*!< 0x20000000 */ |
|
1258 | #define RCC_APB1ENR_DACEN ((uint32_t)0x20000000) /*!< DAC interface clock enable */ |
1650 | #define RCC_APB1ENR_DACEN RCC_APB1ENR_DACEN_Msk /*!< DAC interface clock enable */ |
1259 | 1651 | ||
1260 | /******************* Bit definition for RCC_BDCR register *******************/ |
1652 | /******************* Bit definition for RCC_BDCR register *******************/ |
- | 1653 | #define RCC_BDCR_LSEON_Pos (0U) |
|
- | 1654 | #define RCC_BDCR_LSEON_Msk (0x1U << RCC_BDCR_LSEON_Pos) /*!< 0x00000001 */ |
|
1261 | #define RCC_BDCR_LSEON ((uint32_t)0x00000001) /*!< External Low Speed oscillator enable */ |
1655 | #define RCC_BDCR_LSEON RCC_BDCR_LSEON_Msk /*!< External Low Speed oscillator enable */ |
- | 1656 | #define RCC_BDCR_LSERDY_Pos (1U) |
|
- | 1657 | #define RCC_BDCR_LSERDY_Msk (0x1U << RCC_BDCR_LSERDY_Pos) /*!< 0x00000002 */ |
|
1262 | #define RCC_BDCR_LSERDY ((uint32_t)0x00000002) /*!< External Low Speed oscillator Ready */ |
1658 | #define RCC_BDCR_LSERDY RCC_BDCR_LSERDY_Msk /*!< External Low Speed oscillator Ready */ |
- | 1659 | #define RCC_BDCR_LSEBYP_Pos (2U) |
|
- | 1660 | #define RCC_BDCR_LSEBYP_Msk (0x1U << RCC_BDCR_LSEBYP_Pos) /*!< 0x00000004 */ |
|
1263 | #define RCC_BDCR_LSEBYP ((uint32_t)0x00000004) /*!< External Low Speed oscillator Bypass */ |
1661 | #define RCC_BDCR_LSEBYP RCC_BDCR_LSEBYP_Msk /*!< External Low Speed oscillator Bypass */ |
1264 | 1662 | ||
- | 1663 | #define RCC_BDCR_RTCSEL_Pos (8U) |
|
- | 1664 | #define RCC_BDCR_RTCSEL_Msk (0x3U << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000300 */ |
|
1265 | #define RCC_BDCR_RTCSEL ((uint32_t)0x00000300) /*!< RTCSEL[1:0] bits (RTC clock source selection) */ |
1665 | #define RCC_BDCR_RTCSEL RCC_BDCR_RTCSEL_Msk /*!< RTCSEL[1:0] bits (RTC clock source selection) */ |
1266 | #define RCC_BDCR_RTCSEL_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
1666 | #define RCC_BDCR_RTCSEL_0 (0x1U << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000100 */ |
1267 | #define RCC_BDCR_RTCSEL_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
1667 | #define RCC_BDCR_RTCSEL_1 (0x2U << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000200 */ |
1268 | 1668 | ||
1269 | /*!< RTC congiguration */ |
1669 | /*!< RTC congiguration */ |
1270 | #define RCC_BDCR_RTCSEL_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */ |
1670 | #define RCC_BDCR_RTCSEL_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */ |
1271 | #define RCC_BDCR_RTCSEL_LSE ((uint32_t)0x00000100) /*!< LSE oscillator clock used as RTC clock */ |
1671 | #define RCC_BDCR_RTCSEL_LSE ((uint32_t)0x00000100) /*!< LSE oscillator clock used as RTC clock */ |
1272 | #define RCC_BDCR_RTCSEL_LSI ((uint32_t)0x00000200) /*!< LSI oscillator clock used as RTC clock */ |
1672 | #define RCC_BDCR_RTCSEL_LSI ((uint32_t)0x00000200) /*!< LSI oscillator clock used as RTC clock */ |
1273 | #define RCC_BDCR_RTCSEL_HSE ((uint32_t)0x00000300) /*!< HSE oscillator clock divided by 128 used as RTC clock */ |
1673 | #define RCC_BDCR_RTCSEL_HSE ((uint32_t)0x00000300) /*!< HSE oscillator clock divided by 128 used as RTC clock */ |
1274 | 1674 | ||
- | 1675 | #define RCC_BDCR_RTCEN_Pos (15U) |
|
- | 1676 | #define RCC_BDCR_RTCEN_Msk (0x1U << RCC_BDCR_RTCEN_Pos) /*!< 0x00008000 */ |
|
1275 | #define RCC_BDCR_RTCEN ((uint32_t)0x00008000) /*!< RTC clock enable */ |
1677 | #define RCC_BDCR_RTCEN RCC_BDCR_RTCEN_Msk /*!< RTC clock enable */ |
- | 1678 | #define RCC_BDCR_BDRST_Pos (16U) |
|
- | 1679 | #define RCC_BDCR_BDRST_Msk (0x1U << RCC_BDCR_BDRST_Pos) /*!< 0x00010000 */ |
|
1276 | #define RCC_BDCR_BDRST ((uint32_t)0x00010000) /*!< Backup domain software reset */ |
1680 | #define RCC_BDCR_BDRST RCC_BDCR_BDRST_Msk /*!< Backup domain software reset */ |
1277 | 1681 | ||
1278 | /******************* Bit definition for RCC_CSR register ********************/ |
1682 | /******************* Bit definition for RCC_CSR register ********************/ |
- | 1683 | #define RCC_CSR_LSION_Pos (0U) |
|
- | 1684 | #define RCC_CSR_LSION_Msk (0x1U << RCC_CSR_LSION_Pos) /*!< 0x00000001 */ |
|
1279 | #define RCC_CSR_LSION ((uint32_t)0x00000001) /*!< Internal Low Speed oscillator enable */ |
1685 | #define RCC_CSR_LSION RCC_CSR_LSION_Msk /*!< Internal Low Speed oscillator enable */ |
- | 1686 | #define RCC_CSR_LSIRDY_Pos (1U) |
|
- | 1687 | #define RCC_CSR_LSIRDY_Msk (0x1U << RCC_CSR_LSIRDY_Pos) /*!< 0x00000002 */ |
|
1280 | #define RCC_CSR_LSIRDY ((uint32_t)0x00000002) /*!< Internal Low Speed oscillator Ready */ |
1688 | #define RCC_CSR_LSIRDY RCC_CSR_LSIRDY_Msk /*!< Internal Low Speed oscillator Ready */ |
- | 1689 | #define RCC_CSR_RMVF_Pos (24U) |
|
- | 1690 | #define RCC_CSR_RMVF_Msk (0x1U << RCC_CSR_RMVF_Pos) /*!< 0x01000000 */ |
|
1281 | #define RCC_CSR_RMVF ((uint32_t)0x01000000) /*!< Remove reset flag */ |
1691 | #define RCC_CSR_RMVF RCC_CSR_RMVF_Msk /*!< Remove reset flag */ |
- | 1692 | #define RCC_CSR_PINRSTF_Pos (26U) |
|
- | 1693 | #define RCC_CSR_PINRSTF_Msk (0x1U << RCC_CSR_PINRSTF_Pos) /*!< 0x04000000 */ |
|
1282 | #define RCC_CSR_PINRSTF ((uint32_t)0x04000000) /*!< PIN reset flag */ |
1694 | #define RCC_CSR_PINRSTF RCC_CSR_PINRSTF_Msk /*!< PIN reset flag */ |
- | 1695 | #define RCC_CSR_PORRSTF_Pos (27U) |
|
- | 1696 | #define RCC_CSR_PORRSTF_Msk (0x1U << RCC_CSR_PORRSTF_Pos) /*!< 0x08000000 */ |
|
1283 | #define RCC_CSR_PORRSTF ((uint32_t)0x08000000) /*!< POR/PDR reset flag */ |
1697 | #define RCC_CSR_PORRSTF RCC_CSR_PORRSTF_Msk /*!< POR/PDR reset flag */ |
- | 1698 | #define RCC_CSR_SFTRSTF_Pos (28U) |
|
- | 1699 | #define RCC_CSR_SFTRSTF_Msk (0x1U << RCC_CSR_SFTRSTF_Pos) /*!< 0x10000000 */ |
|
1284 | #define RCC_CSR_SFTRSTF ((uint32_t)0x10000000) /*!< Software Reset flag */ |
1700 | #define RCC_CSR_SFTRSTF RCC_CSR_SFTRSTF_Msk /*!< Software Reset flag */ |
- | 1701 | #define RCC_CSR_IWDGRSTF_Pos (29U) |
|
- | 1702 | #define RCC_CSR_IWDGRSTF_Msk (0x1U << RCC_CSR_IWDGRSTF_Pos) /*!< 0x20000000 */ |
|
1285 | #define RCC_CSR_IWDGRSTF ((uint32_t)0x20000000) /*!< Independent Watchdog reset flag */ |
1703 | #define RCC_CSR_IWDGRSTF RCC_CSR_IWDGRSTF_Msk /*!< Independent Watchdog reset flag */ |
- | 1704 | #define RCC_CSR_WWDGRSTF_Pos (30U) |
|
- | 1705 | #define RCC_CSR_WWDGRSTF_Msk (0x1U << RCC_CSR_WWDGRSTF_Pos) /*!< 0x40000000 */ |
|
1286 | #define RCC_CSR_WWDGRSTF ((uint32_t)0x40000000) /*!< Window watchdog reset flag */ |
1706 | #define RCC_CSR_WWDGRSTF RCC_CSR_WWDGRSTF_Msk /*!< Window watchdog reset flag */ |
- | 1707 | #define RCC_CSR_LPWRRSTF_Pos (31U) |
|
- | 1708 | #define RCC_CSR_LPWRRSTF_Msk (0x1U << RCC_CSR_LPWRRSTF_Pos) /*!< 0x80000000 */ |
|
1287 | #define RCC_CSR_LPWRRSTF ((uint32_t)0x80000000) /*!< Low-Power reset flag */ |
1709 | #define RCC_CSR_LPWRRSTF RCC_CSR_LPWRRSTF_Msk /*!< Low-Power reset flag */ |
1288 | 1710 | ||
1289 | 1711 | ||
1290 | 1712 | ||
1291 | /******************************************************************************/ |
1713 | /******************************************************************************/ |
1292 | /* */ |
1714 | /* */ |
1293 | /* General Purpose and Alternate Function I/O */ |
1715 | /* General Purpose and Alternate Function I/O */ |
1294 | /* */ |
1716 | /* */ |
1295 | /******************************************************************************/ |
1717 | /******************************************************************************/ |
1296 | 1718 | ||
1297 | /******************* Bit definition for GPIO_CRL register *******************/ |
1719 | /******************* Bit definition for GPIO_CRL register *******************/ |
- | 1720 | #define GPIO_CRL_MODE_Pos (0U) |
|
- | 1721 | #define GPIO_CRL_MODE_Msk (0x33333333U << GPIO_CRL_MODE_Pos) /*!< 0x33333333 */ |
|
1298 | #define GPIO_CRL_MODE ((uint32_t)0x33333333) /*!< Port x mode bits */ |
1722 | #define GPIO_CRL_MODE GPIO_CRL_MODE_Msk /*!< Port x mode bits */ |
1299 | 1723 | ||
- | 1724 | #define GPIO_CRL_MODE0_Pos (0U) |
|
- | 1725 | #define GPIO_CRL_MODE0_Msk (0x3U << GPIO_CRL_MODE0_Pos) /*!< 0x00000003 */ |
|
1300 | #define GPIO_CRL_MODE0 ((uint32_t)0x00000003) /*!< MODE0[1:0] bits (Port x mode bits, pin 0) */ |
1726 | #define GPIO_CRL_MODE0 GPIO_CRL_MODE0_Msk /*!< MODE0[1:0] bits (Port x mode bits, pin 0) */ |
1301 | #define GPIO_CRL_MODE0_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
1727 | #define GPIO_CRL_MODE0_0 (0x1U << GPIO_CRL_MODE0_Pos) /*!< 0x00000001 */ |
1302 | #define GPIO_CRL_MODE0_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
1728 | #define GPIO_CRL_MODE0_1 (0x2U << GPIO_CRL_MODE0_Pos) /*!< 0x00000002 */ |
1303 | 1729 | ||
- | 1730 | #define GPIO_CRL_MODE1_Pos (4U) |
|
- | 1731 | #define GPIO_CRL_MODE1_Msk (0x3U << GPIO_CRL_MODE1_Pos) /*!< 0x00000030 */ |
|
1304 | #define GPIO_CRL_MODE1 ((uint32_t)0x00000030) /*!< MODE1[1:0] bits (Port x mode bits, pin 1) */ |
1732 | #define GPIO_CRL_MODE1 GPIO_CRL_MODE1_Msk /*!< MODE1[1:0] bits (Port x mode bits, pin 1) */ |
1305 | #define GPIO_CRL_MODE1_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
1733 | #define GPIO_CRL_MODE1_0 (0x1U << GPIO_CRL_MODE1_Pos) /*!< 0x00000010 */ |
1306 | #define GPIO_CRL_MODE1_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
1734 | #define GPIO_CRL_MODE1_1 (0x2U << GPIO_CRL_MODE1_Pos) /*!< 0x00000020 */ |
1307 | 1735 | ||
- | 1736 | #define GPIO_CRL_MODE2_Pos (8U) |
|
- | 1737 | #define GPIO_CRL_MODE2_Msk (0x3U << GPIO_CRL_MODE2_Pos) /*!< 0x00000300 */ |
|
1308 | #define GPIO_CRL_MODE2 ((uint32_t)0x00000300) /*!< MODE2[1:0] bits (Port x mode bits, pin 2) */ |
1738 | #define GPIO_CRL_MODE2 GPIO_CRL_MODE2_Msk /*!< MODE2[1:0] bits (Port x mode bits, pin 2) */ |
1309 | #define GPIO_CRL_MODE2_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
1739 | #define GPIO_CRL_MODE2_0 (0x1U << GPIO_CRL_MODE2_Pos) /*!< 0x00000100 */ |
1310 | #define GPIO_CRL_MODE2_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
1740 | #define GPIO_CRL_MODE2_1 (0x2U << GPIO_CRL_MODE2_Pos) /*!< 0x00000200 */ |
1311 | 1741 | ||
- | 1742 | #define GPIO_CRL_MODE3_Pos (12U) |
|
- | 1743 | #define GPIO_CRL_MODE3_Msk (0x3U << GPIO_CRL_MODE3_Pos) /*!< 0x00003000 */ |
|
1312 | #define GPIO_CRL_MODE3 ((uint32_t)0x00003000) /*!< MODE3[1:0] bits (Port x mode bits, pin 3) */ |
1744 | #define GPIO_CRL_MODE3 GPIO_CRL_MODE3_Msk /*!< MODE3[1:0] bits (Port x mode bits, pin 3) */ |
1313 | #define GPIO_CRL_MODE3_0 ((uint32_t)0x00001000) /*!< Bit 0 */ |
1745 | #define GPIO_CRL_MODE3_0 (0x1U << GPIO_CRL_MODE3_Pos) /*!< 0x00001000 */ |
1314 | #define GPIO_CRL_MODE3_1 ((uint32_t)0x00002000) /*!< Bit 1 */ |
1746 | #define GPIO_CRL_MODE3_1 (0x2U << GPIO_CRL_MODE3_Pos) /*!< 0x00002000 */ |
1315 | 1747 | ||
- | 1748 | #define GPIO_CRL_MODE4_Pos (16U) |
|
- | 1749 | #define GPIO_CRL_MODE4_Msk (0x3U << GPIO_CRL_MODE4_Pos) /*!< 0x00030000 */ |
|
1316 | #define GPIO_CRL_MODE4 ((uint32_t)0x00030000) /*!< MODE4[1:0] bits (Port x mode bits, pin 4) */ |
1750 | #define GPIO_CRL_MODE4 GPIO_CRL_MODE4_Msk /*!< MODE4[1:0] bits (Port x mode bits, pin 4) */ |
1317 | #define GPIO_CRL_MODE4_0 ((uint32_t)0x00010000) /*!< Bit 0 */ |
1751 | #define GPIO_CRL_MODE4_0 (0x1U << GPIO_CRL_MODE4_Pos) /*!< 0x00010000 */ |
1318 | #define GPIO_CRL_MODE4_1 ((uint32_t)0x00020000) /*!< Bit 1 */ |
1752 | #define GPIO_CRL_MODE4_1 (0x2U << GPIO_CRL_MODE4_Pos) /*!< 0x00020000 */ |
1319 | 1753 | ||
- | 1754 | #define GPIO_CRL_MODE5_Pos (20U) |
|
- | 1755 | #define GPIO_CRL_MODE5_Msk (0x3U << GPIO_CRL_MODE5_Pos) /*!< 0x00300000 */ |
|
1320 | #define GPIO_CRL_MODE5 ((uint32_t)0x00300000) /*!< MODE5[1:0] bits (Port x mode bits, pin 5) */ |
1756 | #define GPIO_CRL_MODE5 GPIO_CRL_MODE5_Msk /*!< MODE5[1:0] bits (Port x mode bits, pin 5) */ |
1321 | #define GPIO_CRL_MODE5_0 ((uint32_t)0x00100000) /*!< Bit 0 */ |
1757 | #define GPIO_CRL_MODE5_0 (0x1U << GPIO_CRL_MODE5_Pos) /*!< 0x00100000 */ |
1322 | #define GPIO_CRL_MODE5_1 ((uint32_t)0x00200000) /*!< Bit 1 */ |
1758 | #define GPIO_CRL_MODE5_1 (0x2U << GPIO_CRL_MODE5_Pos) /*!< 0x00200000 */ |
1323 | 1759 | ||
- | 1760 | #define GPIO_CRL_MODE6_Pos (24U) |
|
- | 1761 | #define GPIO_CRL_MODE6_Msk (0x3U << GPIO_CRL_MODE6_Pos) /*!< 0x03000000 */ |
|
1324 | #define GPIO_CRL_MODE6 ((uint32_t)0x03000000) /*!< MODE6[1:0] bits (Port x mode bits, pin 6) */ |
1762 | #define GPIO_CRL_MODE6 GPIO_CRL_MODE6_Msk /*!< MODE6[1:0] bits (Port x mode bits, pin 6) */ |
1325 | #define GPIO_CRL_MODE6_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
1763 | #define GPIO_CRL_MODE6_0 (0x1U << GPIO_CRL_MODE6_Pos) /*!< 0x01000000 */ |
1326 | #define GPIO_CRL_MODE6_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
1764 | #define GPIO_CRL_MODE6_1 (0x2U << GPIO_CRL_MODE6_Pos) /*!< 0x02000000 */ |
1327 | 1765 | ||
- | 1766 | #define GPIO_CRL_MODE7_Pos (28U) |
|
- | 1767 | #define GPIO_CRL_MODE7_Msk (0x3U << GPIO_CRL_MODE7_Pos) /*!< 0x30000000 */ |
|
1328 | #define GPIO_CRL_MODE7 ((uint32_t)0x30000000) /*!< MODE7[1:0] bits (Port x mode bits, pin 7) */ |
1768 | #define GPIO_CRL_MODE7 GPIO_CRL_MODE7_Msk /*!< MODE7[1:0] bits (Port x mode bits, pin 7) */ |
1329 | #define GPIO_CRL_MODE7_0 ((uint32_t)0x10000000) /*!< Bit 0 */ |
1769 | #define GPIO_CRL_MODE7_0 (0x1U << GPIO_CRL_MODE7_Pos) /*!< 0x10000000 */ |
1330 | #define GPIO_CRL_MODE7_1 ((uint32_t)0x20000000) /*!< Bit 1 */ |
1770 | #define GPIO_CRL_MODE7_1 (0x2U << GPIO_CRL_MODE7_Pos) /*!< 0x20000000 */ |
1331 | 1771 | ||
- | 1772 | #define GPIO_CRL_CNF_Pos (2U) |
|
- | 1773 | #define GPIO_CRL_CNF_Msk (0x33333333U << GPIO_CRL_CNF_Pos) /*!< 0xCCCCCCCC */ |
|
1332 | #define GPIO_CRL_CNF ((uint32_t)0xCCCCCCCC) /*!< Port x configuration bits */ |
1774 | #define GPIO_CRL_CNF GPIO_CRL_CNF_Msk /*!< Port x configuration bits */ |
1333 | 1775 | ||
- | 1776 | #define GPIO_CRL_CNF0_Pos (2U) |
|
- | 1777 | #define GPIO_CRL_CNF0_Msk (0x3U << GPIO_CRL_CNF0_Pos) /*!< 0x0000000C */ |
|
1334 | #define GPIO_CRL_CNF0 ((uint32_t)0x0000000C) /*!< CNF0[1:0] bits (Port x configuration bits, pin 0) */ |
1778 | #define GPIO_CRL_CNF0 GPIO_CRL_CNF0_Msk /*!< CNF0[1:0] bits (Port x configuration bits, pin 0) */ |
1335 | #define GPIO_CRL_CNF0_0 ((uint32_t)0x00000004) /*!< Bit 0 */ |
1779 | #define GPIO_CRL_CNF0_0 (0x1U << GPIO_CRL_CNF0_Pos) /*!< 0x00000004 */ |
1336 | #define GPIO_CRL_CNF0_1 ((uint32_t)0x00000008) /*!< Bit 1 */ |
1780 | #define GPIO_CRL_CNF0_1 (0x2U << GPIO_CRL_CNF0_Pos) /*!< 0x00000008 */ |
1337 | 1781 | ||
- | 1782 | #define GPIO_CRL_CNF1_Pos (6U) |
|
- | 1783 | #define GPIO_CRL_CNF1_Msk (0x3U << GPIO_CRL_CNF1_Pos) /*!< 0x000000C0 */ |
|
1338 | #define GPIO_CRL_CNF1 ((uint32_t)0x000000C0) /*!< CNF1[1:0] bits (Port x configuration bits, pin 1) */ |
1784 | #define GPIO_CRL_CNF1 GPIO_CRL_CNF1_Msk /*!< CNF1[1:0] bits (Port x configuration bits, pin 1) */ |
1339 | #define GPIO_CRL_CNF1_0 ((uint32_t)0x00000040) /*!< Bit 0 */ |
1785 | #define GPIO_CRL_CNF1_0 (0x1U << GPIO_CRL_CNF1_Pos) /*!< 0x00000040 */ |
1340 | #define GPIO_CRL_CNF1_1 ((uint32_t)0x00000080) /*!< Bit 1 */ |
1786 | #define GPIO_CRL_CNF1_1 (0x2U << GPIO_CRL_CNF1_Pos) /*!< 0x00000080 */ |
1341 | 1787 | ||
- | 1788 | #define GPIO_CRL_CNF2_Pos (10U) |
|
- | 1789 | #define GPIO_CRL_CNF2_Msk (0x3U << GPIO_CRL_CNF2_Pos) /*!< 0x00000C00 */ |
|
1342 | #define GPIO_CRL_CNF2 ((uint32_t)0x00000C00) /*!< CNF2[1:0] bits (Port x configuration bits, pin 2) */ |
1790 | #define GPIO_CRL_CNF2 GPIO_CRL_CNF2_Msk /*!< CNF2[1:0] bits (Port x configuration bits, pin 2) */ |
1343 | #define GPIO_CRL_CNF2_0 ((uint32_t)0x00000400) /*!< Bit 0 */ |
1791 | #define GPIO_CRL_CNF2_0 (0x1U << GPIO_CRL_CNF2_Pos) /*!< 0x00000400 */ |
1344 | #define GPIO_CRL_CNF2_1 ((uint32_t)0x00000800) /*!< Bit 1 */ |
1792 | #define GPIO_CRL_CNF2_1 (0x2U << GPIO_CRL_CNF2_Pos) /*!< 0x00000800 */ |
1345 | 1793 | ||
- | 1794 | #define GPIO_CRL_CNF3_Pos (14U) |
|
- | 1795 | #define GPIO_CRL_CNF3_Msk (0x3U << GPIO_CRL_CNF3_Pos) /*!< 0x0000C000 */ |
|
1346 | #define GPIO_CRL_CNF3 ((uint32_t)0x0000C000) /*!< CNF3[1:0] bits (Port x configuration bits, pin 3) */ |
1796 | #define GPIO_CRL_CNF3 GPIO_CRL_CNF3_Msk /*!< CNF3[1:0] bits (Port x configuration bits, pin 3) */ |
1347 | #define GPIO_CRL_CNF3_0 ((uint32_t)0x00004000) /*!< Bit 0 */ |
1797 | #define GPIO_CRL_CNF3_0 (0x1U << GPIO_CRL_CNF3_Pos) /*!< 0x00004000 */ |
1348 | #define GPIO_CRL_CNF3_1 ((uint32_t)0x00008000) /*!< Bit 1 */ |
1798 | #define GPIO_CRL_CNF3_1 (0x2U << GPIO_CRL_CNF3_Pos) /*!< 0x00008000 */ |
1349 | 1799 | ||
- | 1800 | #define GPIO_CRL_CNF4_Pos (18U) |
|
- | 1801 | #define GPIO_CRL_CNF4_Msk (0x3U << GPIO_CRL_CNF4_Pos) /*!< 0x000C0000 */ |
|
1350 | #define GPIO_CRL_CNF4 ((uint32_t)0x000C0000) /*!< CNF4[1:0] bits (Port x configuration bits, pin 4) */ |
1802 | #define GPIO_CRL_CNF4 GPIO_CRL_CNF4_Msk /*!< CNF4[1:0] bits (Port x configuration bits, pin 4) */ |
1351 | #define GPIO_CRL_CNF4_0 ((uint32_t)0x00040000) /*!< Bit 0 */ |
1803 | #define GPIO_CRL_CNF4_0 (0x1U << GPIO_CRL_CNF4_Pos) /*!< 0x00040000 */ |
1352 | #define GPIO_CRL_CNF4_1 ((uint32_t)0x00080000) /*!< Bit 1 */ |
1804 | #define GPIO_CRL_CNF4_1 (0x2U << GPIO_CRL_CNF4_Pos) /*!< 0x00080000 */ |
1353 | 1805 | ||
- | 1806 | #define GPIO_CRL_CNF5_Pos (22U) |
|
- | 1807 | #define GPIO_CRL_CNF5_Msk (0x3U << GPIO_CRL_CNF5_Pos) /*!< 0x00C00000 */ |
|
1354 | #define GPIO_CRL_CNF5 ((uint32_t)0x00C00000) /*!< CNF5[1:0] bits (Port x configuration bits, pin 5) */ |
1808 | #define GPIO_CRL_CNF5 GPIO_CRL_CNF5_Msk /*!< CNF5[1:0] bits (Port x configuration bits, pin 5) */ |
1355 | #define GPIO_CRL_CNF5_0 ((uint32_t)0x00400000) /*!< Bit 0 */ |
1809 | #define GPIO_CRL_CNF5_0 (0x1U << GPIO_CRL_CNF5_Pos) /*!< 0x00400000 */ |
1356 | #define GPIO_CRL_CNF5_1 ((uint32_t)0x00800000) /*!< Bit 1 */ |
1810 | #define GPIO_CRL_CNF5_1 (0x2U << GPIO_CRL_CNF5_Pos) /*!< 0x00800000 */ |
1357 | 1811 | ||
- | 1812 | #define GPIO_CRL_CNF6_Pos (26U) |
|
- | 1813 | #define GPIO_CRL_CNF6_Msk (0x3U << GPIO_CRL_CNF6_Pos) /*!< 0x0C000000 */ |
|
1358 | #define GPIO_CRL_CNF6 ((uint32_t)0x0C000000) /*!< CNF6[1:0] bits (Port x configuration bits, pin 6) */ |
1814 | #define GPIO_CRL_CNF6 GPIO_CRL_CNF6_Msk /*!< CNF6[1:0] bits (Port x configuration bits, pin 6) */ |
1359 | #define GPIO_CRL_CNF6_0 ((uint32_t)0x04000000) /*!< Bit 0 */ |
1815 | #define GPIO_CRL_CNF6_0 (0x1U << GPIO_CRL_CNF6_Pos) /*!< 0x04000000 */ |
1360 | #define GPIO_CRL_CNF6_1 ((uint32_t)0x08000000) /*!< Bit 1 */ |
1816 | #define GPIO_CRL_CNF6_1 (0x2U << GPIO_CRL_CNF6_Pos) /*!< 0x08000000 */ |
1361 | 1817 | ||
- | 1818 | #define GPIO_CRL_CNF7_Pos (30U) |
|
- | 1819 | #define GPIO_CRL_CNF7_Msk (0x3U << GPIO_CRL_CNF7_Pos) /*!< 0xC0000000 */ |
|
1362 | #define GPIO_CRL_CNF7 ((uint32_t)0xC0000000) /*!< CNF7[1:0] bits (Port x configuration bits, pin 7) */ |
1820 | #define GPIO_CRL_CNF7 GPIO_CRL_CNF7_Msk /*!< CNF7[1:0] bits (Port x configuration bits, pin 7) */ |
1363 | #define GPIO_CRL_CNF7_0 ((uint32_t)0x40000000) /*!< Bit 0 */ |
1821 | #define GPIO_CRL_CNF7_0 (0x1U << GPIO_CRL_CNF7_Pos) /*!< 0x40000000 */ |
1364 | #define GPIO_CRL_CNF7_1 ((uint32_t)0x80000000) /*!< Bit 1 */ |
1822 | #define GPIO_CRL_CNF7_1 (0x2U << GPIO_CRL_CNF7_Pos) /*!< 0x80000000 */ |
1365 | 1823 | ||
1366 | /******************* Bit definition for GPIO_CRH register *******************/ |
1824 | /******************* Bit definition for GPIO_CRH register *******************/ |
- | 1825 | #define GPIO_CRH_MODE_Pos (0U) |
|
- | 1826 | #define GPIO_CRH_MODE_Msk (0x33333333U << GPIO_CRH_MODE_Pos) /*!< 0x33333333 */ |
|
1367 | #define GPIO_CRH_MODE ((uint32_t)0x33333333) /*!< Port x mode bits */ |
1827 | #define GPIO_CRH_MODE GPIO_CRH_MODE_Msk /*!< Port x mode bits */ |
1368 | 1828 | ||
- | 1829 | #define GPIO_CRH_MODE8_Pos (0U) |
|
- | 1830 | #define GPIO_CRH_MODE8_Msk (0x3U << GPIO_CRH_MODE8_Pos) /*!< 0x00000003 */ |
|
1369 | #define GPIO_CRH_MODE8 ((uint32_t)0x00000003) /*!< MODE8[1:0] bits (Port x mode bits, pin 8) */ |
1831 | #define GPIO_CRH_MODE8 GPIO_CRH_MODE8_Msk /*!< MODE8[1:0] bits (Port x mode bits, pin 8) */ |
1370 | #define GPIO_CRH_MODE8_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
1832 | #define GPIO_CRH_MODE8_0 (0x1U << GPIO_CRH_MODE8_Pos) /*!< 0x00000001 */ |
1371 | #define GPIO_CRH_MODE8_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
1833 | #define GPIO_CRH_MODE8_1 (0x2U << GPIO_CRH_MODE8_Pos) /*!< 0x00000002 */ |
1372 | 1834 | ||
- | 1835 | #define GPIO_CRH_MODE9_Pos (4U) |
|
- | 1836 | #define GPIO_CRH_MODE9_Msk (0x3U << GPIO_CRH_MODE9_Pos) /*!< 0x00000030 */ |
|
1373 | #define GPIO_CRH_MODE9 ((uint32_t)0x00000030) /*!< MODE9[1:0] bits (Port x mode bits, pin 9) */ |
1837 | #define GPIO_CRH_MODE9 GPIO_CRH_MODE9_Msk /*!< MODE9[1:0] bits (Port x mode bits, pin 9) */ |
1374 | #define GPIO_CRH_MODE9_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
1838 | #define GPIO_CRH_MODE9_0 (0x1U << GPIO_CRH_MODE9_Pos) /*!< 0x00000010 */ |
1375 | #define GPIO_CRH_MODE9_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
1839 | #define GPIO_CRH_MODE9_1 (0x2U << GPIO_CRH_MODE9_Pos) /*!< 0x00000020 */ |
1376 | 1840 | ||
- | 1841 | #define GPIO_CRH_MODE10_Pos (8U) |
|
- | 1842 | #define GPIO_CRH_MODE10_Msk (0x3U << GPIO_CRH_MODE10_Pos) /*!< 0x00000300 */ |
|
1377 | #define GPIO_CRH_MODE10 ((uint32_t)0x00000300) /*!< MODE10[1:0] bits (Port x mode bits, pin 10) */ |
1843 | #define GPIO_CRH_MODE10 GPIO_CRH_MODE10_Msk /*!< MODE10[1:0] bits (Port x mode bits, pin 10) */ |
1378 | #define GPIO_CRH_MODE10_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
1844 | #define GPIO_CRH_MODE10_0 (0x1U << GPIO_CRH_MODE10_Pos) /*!< 0x00000100 */ |
1379 | #define GPIO_CRH_MODE10_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
1845 | #define GPIO_CRH_MODE10_1 (0x2U << GPIO_CRH_MODE10_Pos) /*!< 0x00000200 */ |
1380 | 1846 | ||
- | 1847 | #define GPIO_CRH_MODE11_Pos (12U) |
|
- | 1848 | #define GPIO_CRH_MODE11_Msk (0x3U << GPIO_CRH_MODE11_Pos) /*!< 0x00003000 */ |
|
1381 | #define GPIO_CRH_MODE11 ((uint32_t)0x00003000) /*!< MODE11[1:0] bits (Port x mode bits, pin 11) */ |
1849 | #define GPIO_CRH_MODE11 GPIO_CRH_MODE11_Msk /*!< MODE11[1:0] bits (Port x mode bits, pin 11) */ |
1382 | #define GPIO_CRH_MODE11_0 ((uint32_t)0x00001000) /*!< Bit 0 */ |
1850 | #define GPIO_CRH_MODE11_0 (0x1U << GPIO_CRH_MODE11_Pos) /*!< 0x00001000 */ |
1383 | #define GPIO_CRH_MODE11_1 ((uint32_t)0x00002000) /*!< Bit 1 */ |
1851 | #define GPIO_CRH_MODE11_1 (0x2U << GPIO_CRH_MODE11_Pos) /*!< 0x00002000 */ |
1384 | 1852 | ||
- | 1853 | #define GPIO_CRH_MODE12_Pos (16U) |
|
- | 1854 | #define GPIO_CRH_MODE12_Msk (0x3U << GPIO_CRH_MODE12_Pos) /*!< 0x00030000 */ |
|
1385 | #define GPIO_CRH_MODE12 ((uint32_t)0x00030000) /*!< MODE12[1:0] bits (Port x mode bits, pin 12) */ |
1855 | #define GPIO_CRH_MODE12 GPIO_CRH_MODE12_Msk /*!< MODE12[1:0] bits (Port x mode bits, pin 12) */ |
1386 | #define GPIO_CRH_MODE12_0 ((uint32_t)0x00010000) /*!< Bit 0 */ |
1856 | #define GPIO_CRH_MODE12_0 (0x1U << GPIO_CRH_MODE12_Pos) /*!< 0x00010000 */ |
1387 | #define GPIO_CRH_MODE12_1 ((uint32_t)0x00020000) /*!< Bit 1 */ |
1857 | #define GPIO_CRH_MODE12_1 (0x2U << GPIO_CRH_MODE12_Pos) /*!< 0x00020000 */ |
1388 | 1858 | ||
- | 1859 | #define GPIO_CRH_MODE13_Pos (20U) |
|
- | 1860 | #define GPIO_CRH_MODE13_Msk (0x3U << GPIO_CRH_MODE13_Pos) /*!< 0x00300000 */ |
|
1389 | #define GPIO_CRH_MODE13 ((uint32_t)0x00300000) /*!< MODE13[1:0] bits (Port x mode bits, pin 13) */ |
1861 | #define GPIO_CRH_MODE13 GPIO_CRH_MODE13_Msk /*!< MODE13[1:0] bits (Port x mode bits, pin 13) */ |
1390 | #define GPIO_CRH_MODE13_0 ((uint32_t)0x00100000) /*!< Bit 0 */ |
1862 | #define GPIO_CRH_MODE13_0 (0x1U << GPIO_CRH_MODE13_Pos) /*!< 0x00100000 */ |
1391 | #define GPIO_CRH_MODE13_1 ((uint32_t)0x00200000) /*!< Bit 1 */ |
1863 | #define GPIO_CRH_MODE13_1 (0x2U << GPIO_CRH_MODE13_Pos) /*!< 0x00200000 */ |
1392 | 1864 | ||
- | 1865 | #define GPIO_CRH_MODE14_Pos (24U) |
|
- | 1866 | #define GPIO_CRH_MODE14_Msk (0x3U << GPIO_CRH_MODE14_Pos) /*!< 0x03000000 */ |
|
1393 | #define GPIO_CRH_MODE14 ((uint32_t)0x03000000) /*!< MODE14[1:0] bits (Port x mode bits, pin 14) */ |
1867 | #define GPIO_CRH_MODE14 GPIO_CRH_MODE14_Msk /*!< MODE14[1:0] bits (Port x mode bits, pin 14) */ |
1394 | #define GPIO_CRH_MODE14_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
1868 | #define GPIO_CRH_MODE14_0 (0x1U << GPIO_CRH_MODE14_Pos) /*!< 0x01000000 */ |
1395 | #define GPIO_CRH_MODE14_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
1869 | #define GPIO_CRH_MODE14_1 (0x2U << GPIO_CRH_MODE14_Pos) /*!< 0x02000000 */ |
1396 | 1870 | ||
- | 1871 | #define GPIO_CRH_MODE15_Pos (28U) |
|
- | 1872 | #define GPIO_CRH_MODE15_Msk (0x3U << GPIO_CRH_MODE15_Pos) /*!< 0x30000000 */ |
|
1397 | #define GPIO_CRH_MODE15 ((uint32_t)0x30000000) /*!< MODE15[1:0] bits (Port x mode bits, pin 15) */ |
1873 | #define GPIO_CRH_MODE15 GPIO_CRH_MODE15_Msk /*!< MODE15[1:0] bits (Port x mode bits, pin 15) */ |
1398 | #define GPIO_CRH_MODE15_0 ((uint32_t)0x10000000) /*!< Bit 0 */ |
1874 | #define GPIO_CRH_MODE15_0 (0x1U << GPIO_CRH_MODE15_Pos) /*!< 0x10000000 */ |
1399 | #define GPIO_CRH_MODE15_1 ((uint32_t)0x20000000) /*!< Bit 1 */ |
1875 | #define GPIO_CRH_MODE15_1 (0x2U << GPIO_CRH_MODE15_Pos) /*!< 0x20000000 */ |
1400 | 1876 | ||
- | 1877 | #define GPIO_CRH_CNF_Pos (2U) |
|
- | 1878 | #define GPIO_CRH_CNF_Msk (0x33333333U << GPIO_CRH_CNF_Pos) /*!< 0xCCCCCCCC */ |
|
1401 | #define GPIO_CRH_CNF ((uint32_t)0xCCCCCCCC) /*!< Port x configuration bits */ |
1879 | #define GPIO_CRH_CNF GPIO_CRH_CNF_Msk /*!< Port x configuration bits */ |
1402 | 1880 | ||
- | 1881 | #define GPIO_CRH_CNF8_Pos (2U) |
|
- | 1882 | #define GPIO_CRH_CNF8_Msk (0x3U << GPIO_CRH_CNF8_Pos) /*!< 0x0000000C */ |
|
1403 | #define GPIO_CRH_CNF8 ((uint32_t)0x0000000C) /*!< CNF8[1:0] bits (Port x configuration bits, pin 8) */ |
1883 | #define GPIO_CRH_CNF8 GPIO_CRH_CNF8_Msk /*!< CNF8[1:0] bits (Port x configuration bits, pin 8) */ |
1404 | #define GPIO_CRH_CNF8_0 ((uint32_t)0x00000004) /*!< Bit 0 */ |
1884 | #define GPIO_CRH_CNF8_0 (0x1U << GPIO_CRH_CNF8_Pos) /*!< 0x00000004 */ |
1405 | #define GPIO_CRH_CNF8_1 ((uint32_t)0x00000008) /*!< Bit 1 */ |
1885 | #define GPIO_CRH_CNF8_1 (0x2U << GPIO_CRH_CNF8_Pos) /*!< 0x00000008 */ |
1406 | 1886 | ||
- | 1887 | #define GPIO_CRH_CNF9_Pos (6U) |
|
- | 1888 | #define GPIO_CRH_CNF9_Msk (0x3U << GPIO_CRH_CNF9_Pos) /*!< 0x000000C0 */ |
|
1407 | #define GPIO_CRH_CNF9 ((uint32_t)0x000000C0) /*!< CNF9[1:0] bits (Port x configuration bits, pin 9) */ |
1889 | #define GPIO_CRH_CNF9 GPIO_CRH_CNF9_Msk /*!< CNF9[1:0] bits (Port x configuration bits, pin 9) */ |
1408 | #define GPIO_CRH_CNF9_0 ((uint32_t)0x00000040) /*!< Bit 0 */ |
1890 | #define GPIO_CRH_CNF9_0 (0x1U << GPIO_CRH_CNF9_Pos) /*!< 0x00000040 */ |
1409 | #define GPIO_CRH_CNF9_1 ((uint32_t)0x00000080) /*!< Bit 1 */ |
1891 | #define GPIO_CRH_CNF9_1 (0x2U << GPIO_CRH_CNF9_Pos) /*!< 0x00000080 */ |
1410 | 1892 | ||
- | 1893 | #define GPIO_CRH_CNF10_Pos (10U) |
|
- | 1894 | #define GPIO_CRH_CNF10_Msk (0x3U << GPIO_CRH_CNF10_Pos) /*!< 0x00000C00 */ |
|
1411 | #define GPIO_CRH_CNF10 ((uint32_t)0x00000C00) /*!< CNF10[1:0] bits (Port x configuration bits, pin 10) */ |
1895 | #define GPIO_CRH_CNF10 GPIO_CRH_CNF10_Msk /*!< CNF10[1:0] bits (Port x configuration bits, pin 10) */ |
1412 | #define GPIO_CRH_CNF10_0 ((uint32_t)0x00000400) /*!< Bit 0 */ |
1896 | #define GPIO_CRH_CNF10_0 (0x1U << GPIO_CRH_CNF10_Pos) /*!< 0x00000400 */ |
1413 | #define GPIO_CRH_CNF10_1 ((uint32_t)0x00000800) /*!< Bit 1 */ |
1897 | #define GPIO_CRH_CNF10_1 (0x2U << GPIO_CRH_CNF10_Pos) /*!< 0x00000800 */ |
1414 | 1898 | ||
- | 1899 | #define GPIO_CRH_CNF11_Pos (14U) |
|
- | 1900 | #define GPIO_CRH_CNF11_Msk (0x3U << GPIO_CRH_CNF11_Pos) /*!< 0x0000C000 */ |
|
1415 | #define GPIO_CRH_CNF11 ((uint32_t)0x0000C000) /*!< CNF11[1:0] bits (Port x configuration bits, pin 11) */ |
1901 | #define GPIO_CRH_CNF11 GPIO_CRH_CNF11_Msk /*!< CNF11[1:0] bits (Port x configuration bits, pin 11) */ |
1416 | #define GPIO_CRH_CNF11_0 ((uint32_t)0x00004000) /*!< Bit 0 */ |
1902 | #define GPIO_CRH_CNF11_0 (0x1U << GPIO_CRH_CNF11_Pos) /*!< 0x00004000 */ |
1417 | #define GPIO_CRH_CNF11_1 ((uint32_t)0x00008000) /*!< Bit 1 */ |
1903 | #define GPIO_CRH_CNF11_1 (0x2U << GPIO_CRH_CNF11_Pos) /*!< 0x00008000 */ |
1418 | 1904 | ||
- | 1905 | #define GPIO_CRH_CNF12_Pos (18U) |
|
- | 1906 | #define GPIO_CRH_CNF12_Msk (0x3U << GPIO_CRH_CNF12_Pos) /*!< 0x000C0000 */ |
|
1419 | #define GPIO_CRH_CNF12 ((uint32_t)0x000C0000) /*!< CNF12[1:0] bits (Port x configuration bits, pin 12) */ |
1907 | #define GPIO_CRH_CNF12 GPIO_CRH_CNF12_Msk /*!< CNF12[1:0] bits (Port x configuration bits, pin 12) */ |
1420 | #define GPIO_CRH_CNF12_0 ((uint32_t)0x00040000) /*!< Bit 0 */ |
1908 | #define GPIO_CRH_CNF12_0 (0x1U << GPIO_CRH_CNF12_Pos) /*!< 0x00040000 */ |
1421 | #define GPIO_CRH_CNF12_1 ((uint32_t)0x00080000) /*!< Bit 1 */ |
1909 | #define GPIO_CRH_CNF12_1 (0x2U << GPIO_CRH_CNF12_Pos) /*!< 0x00080000 */ |
1422 | 1910 | ||
- | 1911 | #define GPIO_CRH_CNF13_Pos (22U) |
|
- | 1912 | #define GPIO_CRH_CNF13_Msk (0x3U << GPIO_CRH_CNF13_Pos) /*!< 0x00C00000 */ |
|
1423 | #define GPIO_CRH_CNF13 ((uint32_t)0x00C00000) /*!< CNF13[1:0] bits (Port x configuration bits, pin 13) */ |
1913 | #define GPIO_CRH_CNF13 GPIO_CRH_CNF13_Msk /*!< CNF13[1:0] bits (Port x configuration bits, pin 13) */ |
1424 | #define GPIO_CRH_CNF13_0 ((uint32_t)0x00400000) /*!< Bit 0 */ |
1914 | #define GPIO_CRH_CNF13_0 (0x1U << GPIO_CRH_CNF13_Pos) /*!< 0x00400000 */ |
1425 | #define GPIO_CRH_CNF13_1 ((uint32_t)0x00800000) /*!< Bit 1 */ |
1915 | #define GPIO_CRH_CNF13_1 (0x2U << GPIO_CRH_CNF13_Pos) /*!< 0x00800000 */ |
1426 | 1916 | ||
- | 1917 | #define GPIO_CRH_CNF14_Pos (26U) |
|
- | 1918 | #define GPIO_CRH_CNF14_Msk (0x3U << GPIO_CRH_CNF14_Pos) /*!< 0x0C000000 */ |
|
1427 | #define GPIO_CRH_CNF14 ((uint32_t)0x0C000000) /*!< CNF14[1:0] bits (Port x configuration bits, pin 14) */ |
1919 | #define GPIO_CRH_CNF14 GPIO_CRH_CNF14_Msk /*!< CNF14[1:0] bits (Port x configuration bits, pin 14) */ |
1428 | #define GPIO_CRH_CNF14_0 ((uint32_t)0x04000000) /*!< Bit 0 */ |
1920 | #define GPIO_CRH_CNF14_0 (0x1U << GPIO_CRH_CNF14_Pos) /*!< 0x04000000 */ |
1429 | #define GPIO_CRH_CNF14_1 ((uint32_t)0x08000000) /*!< Bit 1 */ |
1921 | #define GPIO_CRH_CNF14_1 (0x2U << GPIO_CRH_CNF14_Pos) /*!< 0x08000000 */ |
1430 | 1922 | ||
- | 1923 | #define GPIO_CRH_CNF15_Pos (30U) |
|
- | 1924 | #define GPIO_CRH_CNF15_Msk (0x3U << GPIO_CRH_CNF15_Pos) /*!< 0xC0000000 */ |
|
1431 | #define GPIO_CRH_CNF15 ((uint32_t)0xC0000000) /*!< CNF15[1:0] bits (Port x configuration bits, pin 15) */ |
1925 | #define GPIO_CRH_CNF15 GPIO_CRH_CNF15_Msk /*!< CNF15[1:0] bits (Port x configuration bits, pin 15) */ |
1432 | #define GPIO_CRH_CNF15_0 ((uint32_t)0x40000000) /*!< Bit 0 */ |
1926 | #define GPIO_CRH_CNF15_0 (0x1U << GPIO_CRH_CNF15_Pos) /*!< 0x40000000 */ |
1433 | #define GPIO_CRH_CNF15_1 ((uint32_t)0x80000000) /*!< Bit 1 */ |
1927 | #define GPIO_CRH_CNF15_1 (0x2U << GPIO_CRH_CNF15_Pos) /*!< 0x80000000 */ |
1434 | 1928 | ||
1435 | /*!<****************** Bit definition for GPIO_IDR register *******************/ |
1929 | /*!<****************** Bit definition for GPIO_IDR register *******************/ |
- | 1930 | #define GPIO_IDR_IDR0_Pos (0U) |
|
- | 1931 | #define GPIO_IDR_IDR0_Msk (0x1U << GPIO_IDR_IDR0_Pos) /*!< 0x00000001 */ |
|
1436 | #define GPIO_IDR_IDR0 ((uint32_t)0x0001) /*!< Port input data, bit 0 */ |
1932 | #define GPIO_IDR_IDR0 GPIO_IDR_IDR0_Msk /*!< Port input data, bit 0 */ |
- | 1933 | #define GPIO_IDR_IDR1_Pos (1U) |
|
- | 1934 | #define GPIO_IDR_IDR1_Msk (0x1U << GPIO_IDR_IDR1_Pos) /*!< 0x00000002 */ |
|
1437 | #define GPIO_IDR_IDR1 ((uint32_t)0x0002) /*!< Port input data, bit 1 */ |
1935 | #define GPIO_IDR_IDR1 GPIO_IDR_IDR1_Msk /*!< Port input data, bit 1 */ |
- | 1936 | #define GPIO_IDR_IDR2_Pos (2U) |
|
- | 1937 | #define GPIO_IDR_IDR2_Msk (0x1U << GPIO_IDR_IDR2_Pos) /*!< 0x00000004 */ |
|
1438 | #define GPIO_IDR_IDR2 ((uint32_t)0x0004) /*!< Port input data, bit 2 */ |
1938 | #define GPIO_IDR_IDR2 GPIO_IDR_IDR2_Msk /*!< Port input data, bit 2 */ |
- | 1939 | #define GPIO_IDR_IDR3_Pos (3U) |
|
- | 1940 | #define GPIO_IDR_IDR3_Msk (0x1U << GPIO_IDR_IDR3_Pos) /*!< 0x00000008 */ |
|
1439 | #define GPIO_IDR_IDR3 ((uint32_t)0x0008) /*!< Port input data, bit 3 */ |
1941 | #define GPIO_IDR_IDR3 GPIO_IDR_IDR3_Msk /*!< Port input data, bit 3 */ |
- | 1942 | #define GPIO_IDR_IDR4_Pos (4U) |
|
- | 1943 | #define GPIO_IDR_IDR4_Msk (0x1U << GPIO_IDR_IDR4_Pos) /*!< 0x00000010 */ |
|
1440 | #define GPIO_IDR_IDR4 ((uint32_t)0x0010) /*!< Port input data, bit 4 */ |
1944 | #define GPIO_IDR_IDR4 GPIO_IDR_IDR4_Msk /*!< Port input data, bit 4 */ |
- | 1945 | #define GPIO_IDR_IDR5_Pos (5U) |
|
- | 1946 | #define GPIO_IDR_IDR5_Msk (0x1U << GPIO_IDR_IDR5_Pos) /*!< 0x00000020 */ |
|
1441 | #define GPIO_IDR_IDR5 ((uint32_t)0x0020) /*!< Port input data, bit 5 */ |
1947 | #define GPIO_IDR_IDR5 GPIO_IDR_IDR5_Msk /*!< Port input data, bit 5 */ |
- | 1948 | #define GPIO_IDR_IDR6_Pos (6U) |
|
- | 1949 | #define GPIO_IDR_IDR6_Msk (0x1U << GPIO_IDR_IDR6_Pos) /*!< 0x00000040 */ |
|
1442 | #define GPIO_IDR_IDR6 ((uint32_t)0x0040) /*!< Port input data, bit 6 */ |
1950 | #define GPIO_IDR_IDR6 GPIO_IDR_IDR6_Msk /*!< Port input data, bit 6 */ |
- | 1951 | #define GPIO_IDR_IDR7_Pos (7U) |
|
- | 1952 | #define GPIO_IDR_IDR7_Msk (0x1U << GPIO_IDR_IDR7_Pos) /*!< 0x00000080 */ |
|
1443 | #define GPIO_IDR_IDR7 ((uint32_t)0x0080) /*!< Port input data, bit 7 */ |
1953 | #define GPIO_IDR_IDR7 GPIO_IDR_IDR7_Msk /*!< Port input data, bit 7 */ |
- | 1954 | #define GPIO_IDR_IDR8_Pos (8U) |
|
- | 1955 | #define GPIO_IDR_IDR8_Msk (0x1U << GPIO_IDR_IDR8_Pos) /*!< 0x00000100 */ |
|
1444 | #define GPIO_IDR_IDR8 ((uint32_t)0x0100) /*!< Port input data, bit 8 */ |
1956 | #define GPIO_IDR_IDR8 GPIO_IDR_IDR8_Msk /*!< Port input data, bit 8 */ |
- | 1957 | #define GPIO_IDR_IDR9_Pos (9U) |
|
- | 1958 | #define GPIO_IDR_IDR9_Msk (0x1U << GPIO_IDR_IDR9_Pos) /*!< 0x00000200 */ |
|
1445 | #define GPIO_IDR_IDR9 ((uint32_t)0x0200) /*!< Port input data, bit 9 */ |
1959 | #define GPIO_IDR_IDR9 GPIO_IDR_IDR9_Msk /*!< Port input data, bit 9 */ |
- | 1960 | #define GPIO_IDR_IDR10_Pos (10U) |
|
- | 1961 | #define GPIO_IDR_IDR10_Msk (0x1U << GPIO_IDR_IDR10_Pos) /*!< 0x00000400 */ |
|
1446 | #define GPIO_IDR_IDR10 ((uint32_t)0x0400) /*!< Port input data, bit 10 */ |
1962 | #define GPIO_IDR_IDR10 GPIO_IDR_IDR10_Msk /*!< Port input data, bit 10 */ |
- | 1963 | #define GPIO_IDR_IDR11_Pos (11U) |
|
- | 1964 | #define GPIO_IDR_IDR11_Msk (0x1U << GPIO_IDR_IDR11_Pos) /*!< 0x00000800 */ |
|
1447 | #define GPIO_IDR_IDR11 ((uint32_t)0x0800) /*!< Port input data, bit 11 */ |
1965 | #define GPIO_IDR_IDR11 GPIO_IDR_IDR11_Msk /*!< Port input data, bit 11 */ |
- | 1966 | #define GPIO_IDR_IDR12_Pos (12U) |
|
- | 1967 | #define GPIO_IDR_IDR12_Msk (0x1U << GPIO_IDR_IDR12_Pos) /*!< 0x00001000 */ |
|
1448 | #define GPIO_IDR_IDR12 ((uint32_t)0x1000) /*!< Port input data, bit 12 */ |
1968 | #define GPIO_IDR_IDR12 GPIO_IDR_IDR12_Msk /*!< Port input data, bit 12 */ |
- | 1969 | #define GPIO_IDR_IDR13_Pos (13U) |
|
- | 1970 | #define GPIO_IDR_IDR13_Msk (0x1U << GPIO_IDR_IDR13_Pos) /*!< 0x00002000 */ |
|
1449 | #define GPIO_IDR_IDR13 ((uint32_t)0x2000) /*!< Port input data, bit 13 */ |
1971 | #define GPIO_IDR_IDR13 GPIO_IDR_IDR13_Msk /*!< Port input data, bit 13 */ |
- | 1972 | #define GPIO_IDR_IDR14_Pos (14U) |
|
- | 1973 | #define GPIO_IDR_IDR14_Msk (0x1U << GPIO_IDR_IDR14_Pos) /*!< 0x00004000 */ |
|
1450 | #define GPIO_IDR_IDR14 ((uint32_t)0x4000) /*!< Port input data, bit 14 */ |
1974 | #define GPIO_IDR_IDR14 GPIO_IDR_IDR14_Msk /*!< Port input data, bit 14 */ |
- | 1975 | #define GPIO_IDR_IDR15_Pos (15U) |
|
- | 1976 | #define GPIO_IDR_IDR15_Msk (0x1U << GPIO_IDR_IDR15_Pos) /*!< 0x00008000 */ |
|
1451 | #define GPIO_IDR_IDR15 ((uint32_t)0x8000) /*!< Port input data, bit 15 */ |
1977 | #define GPIO_IDR_IDR15 GPIO_IDR_IDR15_Msk /*!< Port input data, bit 15 */ |
1452 | 1978 | ||
1453 | /******************* Bit definition for GPIO_ODR register *******************/ |
1979 | /******************* Bit definition for GPIO_ODR register *******************/ |
- | 1980 | #define GPIO_ODR_ODR0_Pos (0U) |
|
- | 1981 | #define GPIO_ODR_ODR0_Msk (0x1U << GPIO_ODR_ODR0_Pos) /*!< 0x00000001 */ |
|
1454 | #define GPIO_ODR_ODR0 ((uint32_t)0x0001) /*!< Port output data, bit 0 */ |
1982 | #define GPIO_ODR_ODR0 GPIO_ODR_ODR0_Msk /*!< Port output data, bit 0 */ |
- | 1983 | #define GPIO_ODR_ODR1_Pos (1U) |
|
- | 1984 | #define GPIO_ODR_ODR1_Msk (0x1U << GPIO_ODR_ODR1_Pos) /*!< 0x00000002 */ |
|
1455 | #define GPIO_ODR_ODR1 ((uint32_t)0x0002) /*!< Port output data, bit 1 */ |
1985 | #define GPIO_ODR_ODR1 GPIO_ODR_ODR1_Msk /*!< Port output data, bit 1 */ |
- | 1986 | #define GPIO_ODR_ODR2_Pos (2U) |
|
- | 1987 | #define GPIO_ODR_ODR2_Msk (0x1U << GPIO_ODR_ODR2_Pos) /*!< 0x00000004 */ |
|
1456 | #define GPIO_ODR_ODR2 ((uint32_t)0x0004) /*!< Port output data, bit 2 */ |
1988 | #define GPIO_ODR_ODR2 GPIO_ODR_ODR2_Msk /*!< Port output data, bit 2 */ |
- | 1989 | #define GPIO_ODR_ODR3_Pos (3U) |
|
- | 1990 | #define GPIO_ODR_ODR3_Msk (0x1U << GPIO_ODR_ODR3_Pos) /*!< 0x00000008 */ |
|
1457 | #define GPIO_ODR_ODR3 ((uint32_t)0x0008) /*!< Port output data, bit 3 */ |
1991 | #define GPIO_ODR_ODR3 GPIO_ODR_ODR3_Msk /*!< Port output data, bit 3 */ |
- | 1992 | #define GPIO_ODR_ODR4_Pos (4U) |
|
- | 1993 | #define GPIO_ODR_ODR4_Msk (0x1U << GPIO_ODR_ODR4_Pos) /*!< 0x00000010 */ |
|
1458 | #define GPIO_ODR_ODR4 ((uint32_t)0x0010) /*!< Port output data, bit 4 */ |
1994 | #define GPIO_ODR_ODR4 GPIO_ODR_ODR4_Msk /*!< Port output data, bit 4 */ |
- | 1995 | #define GPIO_ODR_ODR5_Pos (5U) |
|
- | 1996 | #define GPIO_ODR_ODR5_Msk (0x1U << GPIO_ODR_ODR5_Pos) /*!< 0x00000020 */ |
|
1459 | #define GPIO_ODR_ODR5 ((uint32_t)0x0020) /*!< Port output data, bit 5 */ |
1997 | #define GPIO_ODR_ODR5 GPIO_ODR_ODR5_Msk /*!< Port output data, bit 5 */ |
- | 1998 | #define GPIO_ODR_ODR6_Pos (6U) |
|
- | 1999 | #define GPIO_ODR_ODR6_Msk (0x1U << GPIO_ODR_ODR6_Pos) /*!< 0x00000040 */ |
|
1460 | #define GPIO_ODR_ODR6 ((uint32_t)0x0040) /*!< Port output data, bit 6 */ |
2000 | #define GPIO_ODR_ODR6 GPIO_ODR_ODR6_Msk /*!< Port output data, bit 6 */ |
- | 2001 | #define GPIO_ODR_ODR7_Pos (7U) |
|
- | 2002 | #define GPIO_ODR_ODR7_Msk (0x1U << GPIO_ODR_ODR7_Pos) /*!< 0x00000080 */ |
|
1461 | #define GPIO_ODR_ODR7 ((uint32_t)0x0080) /*!< Port output data, bit 7 */ |
2003 | #define GPIO_ODR_ODR7 GPIO_ODR_ODR7_Msk /*!< Port output data, bit 7 */ |
- | 2004 | #define GPIO_ODR_ODR8_Pos (8U) |
|
- | 2005 | #define GPIO_ODR_ODR8_Msk (0x1U << GPIO_ODR_ODR8_Pos) /*!< 0x00000100 */ |
|
1462 | #define GPIO_ODR_ODR8 ((uint32_t)0x0100) /*!< Port output data, bit 8 */ |
2006 | #define GPIO_ODR_ODR8 GPIO_ODR_ODR8_Msk /*!< Port output data, bit 8 */ |
- | 2007 | #define GPIO_ODR_ODR9_Pos (9U) |
|
- | 2008 | #define GPIO_ODR_ODR9_Msk (0x1U << GPIO_ODR_ODR9_Pos) /*!< 0x00000200 */ |
|
1463 | #define GPIO_ODR_ODR9 ((uint32_t)0x0200) /*!< Port output data, bit 9 */ |
2009 | #define GPIO_ODR_ODR9 GPIO_ODR_ODR9_Msk /*!< Port output data, bit 9 */ |
- | 2010 | #define GPIO_ODR_ODR10_Pos (10U) |
|
- | 2011 | #define GPIO_ODR_ODR10_Msk (0x1U << GPIO_ODR_ODR10_Pos) /*!< 0x00000400 */ |
|
1464 | #define GPIO_ODR_ODR10 ((uint32_t)0x0400) /*!< Port output data, bit 10 */ |
2012 | #define GPIO_ODR_ODR10 GPIO_ODR_ODR10_Msk /*!< Port output data, bit 10 */ |
- | 2013 | #define GPIO_ODR_ODR11_Pos (11U) |
|
- | 2014 | #define GPIO_ODR_ODR11_Msk (0x1U << GPIO_ODR_ODR11_Pos) /*!< 0x00000800 */ |
|
1465 | #define GPIO_ODR_ODR11 ((uint32_t)0x0800) /*!< Port output data, bit 11 */ |
2015 | #define GPIO_ODR_ODR11 GPIO_ODR_ODR11_Msk /*!< Port output data, bit 11 */ |
- | 2016 | #define GPIO_ODR_ODR12_Pos (12U) |
|
- | 2017 | #define GPIO_ODR_ODR12_Msk (0x1U << GPIO_ODR_ODR12_Pos) /*!< 0x00001000 */ |
|
1466 | #define GPIO_ODR_ODR12 ((uint32_t)0x1000) /*!< Port output data, bit 12 */ |
2018 | #define GPIO_ODR_ODR12 GPIO_ODR_ODR12_Msk /*!< Port output data, bit 12 */ |
- | 2019 | #define GPIO_ODR_ODR13_Pos (13U) |
|
- | 2020 | #define GPIO_ODR_ODR13_Msk (0x1U << GPIO_ODR_ODR13_Pos) /*!< 0x00002000 */ |
|
1467 | #define GPIO_ODR_ODR13 ((uint32_t)0x2000) /*!< Port output data, bit 13 */ |
2021 | #define GPIO_ODR_ODR13 GPIO_ODR_ODR13_Msk /*!< Port output data, bit 13 */ |
- | 2022 | #define GPIO_ODR_ODR14_Pos (14U) |
|
- | 2023 | #define GPIO_ODR_ODR14_Msk (0x1U << GPIO_ODR_ODR14_Pos) /*!< 0x00004000 */ |
|
1468 | #define GPIO_ODR_ODR14 ((uint32_t)0x4000) /*!< Port output data, bit 14 */ |
2024 | #define GPIO_ODR_ODR14 GPIO_ODR_ODR14_Msk /*!< Port output data, bit 14 */ |
- | 2025 | #define GPIO_ODR_ODR15_Pos (15U) |
|
- | 2026 | #define GPIO_ODR_ODR15_Msk (0x1U << GPIO_ODR_ODR15_Pos) /*!< 0x00008000 */ |
|
1469 | #define GPIO_ODR_ODR15 ((uint32_t)0x8000) /*!< Port output data, bit 15 */ |
2027 | #define GPIO_ODR_ODR15 GPIO_ODR_ODR15_Msk /*!< Port output data, bit 15 */ |
1470 | 2028 | ||
1471 | /****************** Bit definition for GPIO_BSRR register *******************/ |
2029 | /****************** Bit definition for GPIO_BSRR register *******************/ |
- | 2030 | #define GPIO_BSRR_BS0_Pos (0U) |
|
- | 2031 | #define GPIO_BSRR_BS0_Msk (0x1U << GPIO_BSRR_BS0_Pos) /*!< 0x00000001 */ |
|
1472 | #define GPIO_BSRR_BS0 ((uint32_t)0x00000001) /*!< Port x Set bit 0 */ |
2032 | #define GPIO_BSRR_BS0 GPIO_BSRR_BS0_Msk /*!< Port x Set bit 0 */ |
- | 2033 | #define GPIO_BSRR_BS1_Pos (1U) |
|
- | 2034 | #define GPIO_BSRR_BS1_Msk (0x1U << GPIO_BSRR_BS1_Pos) /*!< 0x00000002 */ |
|
1473 | #define GPIO_BSRR_BS1 ((uint32_t)0x00000002) /*!< Port x Set bit 1 */ |
2035 | #define GPIO_BSRR_BS1 GPIO_BSRR_BS1_Msk /*!< Port x Set bit 1 */ |
- | 2036 | #define GPIO_BSRR_BS2_Pos (2U) |
|
- | 2037 | #define GPIO_BSRR_BS2_Msk (0x1U << GPIO_BSRR_BS2_Pos) /*!< 0x00000004 */ |
|
1474 | #define GPIO_BSRR_BS2 ((uint32_t)0x00000004) /*!< Port x Set bit 2 */ |
2038 | #define GPIO_BSRR_BS2 GPIO_BSRR_BS2_Msk /*!< Port x Set bit 2 */ |
- | 2039 | #define GPIO_BSRR_BS3_Pos (3U) |
|
- | 2040 | #define GPIO_BSRR_BS3_Msk (0x1U << GPIO_BSRR_BS3_Pos) /*!< 0x00000008 */ |
|
1475 | #define GPIO_BSRR_BS3 ((uint32_t)0x00000008) /*!< Port x Set bit 3 */ |
2041 | #define GPIO_BSRR_BS3 GPIO_BSRR_BS3_Msk /*!< Port x Set bit 3 */ |
- | 2042 | #define GPIO_BSRR_BS4_Pos (4U) |
|
- | 2043 | #define GPIO_BSRR_BS4_Msk (0x1U << GPIO_BSRR_BS4_Pos) /*!< 0x00000010 */ |
|
1476 | #define GPIO_BSRR_BS4 ((uint32_t)0x00000010) /*!< Port x Set bit 4 */ |
2044 | #define GPIO_BSRR_BS4 GPIO_BSRR_BS4_Msk /*!< Port x Set bit 4 */ |
- | 2045 | #define GPIO_BSRR_BS5_Pos (5U) |
|
- | 2046 | #define GPIO_BSRR_BS5_Msk (0x1U << GPIO_BSRR_BS5_Pos) /*!< 0x00000020 */ |
|
1477 | #define GPIO_BSRR_BS5 ((uint32_t)0x00000020) /*!< Port x Set bit 5 */ |
2047 | #define GPIO_BSRR_BS5 GPIO_BSRR_BS5_Msk /*!< Port x Set bit 5 */ |
- | 2048 | #define GPIO_BSRR_BS6_Pos (6U) |
|
- | 2049 | #define GPIO_BSRR_BS6_Msk (0x1U << GPIO_BSRR_BS6_Pos) /*!< 0x00000040 */ |
|
1478 | #define GPIO_BSRR_BS6 ((uint32_t)0x00000040) /*!< Port x Set bit 6 */ |
2050 | #define GPIO_BSRR_BS6 GPIO_BSRR_BS6_Msk /*!< Port x Set bit 6 */ |
- | 2051 | #define GPIO_BSRR_BS7_Pos (7U) |
|
- | 2052 | #define GPIO_BSRR_BS7_Msk (0x1U << GPIO_BSRR_BS7_Pos) /*!< 0x00000080 */ |
|
1479 | #define GPIO_BSRR_BS7 ((uint32_t)0x00000080) /*!< Port x Set bit 7 */ |
2053 | #define GPIO_BSRR_BS7 GPIO_BSRR_BS7_Msk /*!< Port x Set bit 7 */ |
- | 2054 | #define GPIO_BSRR_BS8_Pos (8U) |
|
- | 2055 | #define GPIO_BSRR_BS8_Msk (0x1U << GPIO_BSRR_BS8_Pos) /*!< 0x00000100 */ |
|
1480 | #define GPIO_BSRR_BS8 ((uint32_t)0x00000100) /*!< Port x Set bit 8 */ |
2056 | #define GPIO_BSRR_BS8 GPIO_BSRR_BS8_Msk /*!< Port x Set bit 8 */ |
- | 2057 | #define GPIO_BSRR_BS9_Pos (9U) |
|
- | 2058 | #define GPIO_BSRR_BS9_Msk (0x1U << GPIO_BSRR_BS9_Pos) /*!< 0x00000200 */ |
|
1481 | #define GPIO_BSRR_BS9 ((uint32_t)0x00000200) /*!< Port x Set bit 9 */ |
2059 | #define GPIO_BSRR_BS9 GPIO_BSRR_BS9_Msk /*!< Port x Set bit 9 */ |
- | 2060 | #define GPIO_BSRR_BS10_Pos (10U) |
|
- | 2061 | #define GPIO_BSRR_BS10_Msk (0x1U << GPIO_BSRR_BS10_Pos) /*!< 0x00000400 */ |
|
1482 | #define GPIO_BSRR_BS10 ((uint32_t)0x00000400) /*!< Port x Set bit 10 */ |
2062 | #define GPIO_BSRR_BS10 GPIO_BSRR_BS10_Msk /*!< Port x Set bit 10 */ |
- | 2063 | #define GPIO_BSRR_BS11_Pos (11U) |
|
- | 2064 | #define GPIO_BSRR_BS11_Msk (0x1U << GPIO_BSRR_BS11_Pos) /*!< 0x00000800 */ |
|
1483 | #define GPIO_BSRR_BS11 ((uint32_t)0x00000800) /*!< Port x Set bit 11 */ |
2065 | #define GPIO_BSRR_BS11 GPIO_BSRR_BS11_Msk /*!< Port x Set bit 11 */ |
- | 2066 | #define GPIO_BSRR_BS12_Pos (12U) |
|
- | 2067 | #define GPIO_BSRR_BS12_Msk (0x1U << GPIO_BSRR_BS12_Pos) /*!< 0x00001000 */ |
|
1484 | #define GPIO_BSRR_BS12 ((uint32_t)0x00001000) /*!< Port x Set bit 12 */ |
2068 | #define GPIO_BSRR_BS12 GPIO_BSRR_BS12_Msk /*!< Port x Set bit 12 */ |
- | 2069 | #define GPIO_BSRR_BS13_Pos (13U) |
|
- | 2070 | #define GPIO_BSRR_BS13_Msk (0x1U << GPIO_BSRR_BS13_Pos) /*!< 0x00002000 */ |
|
1485 | #define GPIO_BSRR_BS13 ((uint32_t)0x00002000) /*!< Port x Set bit 13 */ |
2071 | #define GPIO_BSRR_BS13 GPIO_BSRR_BS13_Msk /*!< Port x Set bit 13 */ |
- | 2072 | #define GPIO_BSRR_BS14_Pos (14U) |
|
- | 2073 | #define GPIO_BSRR_BS14_Msk (0x1U << GPIO_BSRR_BS14_Pos) /*!< 0x00004000 */ |
|
1486 | #define GPIO_BSRR_BS14 ((uint32_t)0x00004000) /*!< Port x Set bit 14 */ |
2074 | #define GPIO_BSRR_BS14 GPIO_BSRR_BS14_Msk /*!< Port x Set bit 14 */ |
- | 2075 | #define GPIO_BSRR_BS15_Pos (15U) |
|
- | 2076 | #define GPIO_BSRR_BS15_Msk (0x1U << GPIO_BSRR_BS15_Pos) /*!< 0x00008000 */ |
|
1487 | #define GPIO_BSRR_BS15 ((uint32_t)0x00008000) /*!< Port x Set bit 15 */ |
2077 | #define GPIO_BSRR_BS15 GPIO_BSRR_BS15_Msk /*!< Port x Set bit 15 */ |
1488 | 2078 | ||
- | 2079 | #define GPIO_BSRR_BR0_Pos (16U) |
|
- | 2080 | #define GPIO_BSRR_BR0_Msk (0x1U << GPIO_BSRR_BR0_Pos) /*!< 0x00010000 */ |
|
1489 | #define GPIO_BSRR_BR0 ((uint32_t)0x00010000) /*!< Port x Reset bit 0 */ |
2081 | #define GPIO_BSRR_BR0 GPIO_BSRR_BR0_Msk /*!< Port x Reset bit 0 */ |
- | 2082 | #define GPIO_BSRR_BR1_Pos (17U) |
|
- | 2083 | #define GPIO_BSRR_BR1_Msk (0x1U << GPIO_BSRR_BR1_Pos) /*!< 0x00020000 */ |
|
1490 | #define GPIO_BSRR_BR1 ((uint32_t)0x00020000) /*!< Port x Reset bit 1 */ |
2084 | #define GPIO_BSRR_BR1 GPIO_BSRR_BR1_Msk /*!< Port x Reset bit 1 */ |
- | 2085 | #define GPIO_BSRR_BR2_Pos (18U) |
|
- | 2086 | #define GPIO_BSRR_BR2_Msk (0x1U << GPIO_BSRR_BR2_Pos) /*!< 0x00040000 */ |
|
1491 | #define GPIO_BSRR_BR2 ((uint32_t)0x00040000) /*!< Port x Reset bit 2 */ |
2087 | #define GPIO_BSRR_BR2 GPIO_BSRR_BR2_Msk /*!< Port x Reset bit 2 */ |
- | 2088 | #define GPIO_BSRR_BR3_Pos (19U) |
|
- | 2089 | #define GPIO_BSRR_BR3_Msk (0x1U << GPIO_BSRR_BR3_Pos) /*!< 0x00080000 */ |
|
1492 | #define GPIO_BSRR_BR3 ((uint32_t)0x00080000) /*!< Port x Reset bit 3 */ |
2090 | #define GPIO_BSRR_BR3 GPIO_BSRR_BR3_Msk /*!< Port x Reset bit 3 */ |
- | 2091 | #define GPIO_BSRR_BR4_Pos (20U) |
|
- | 2092 | #define GPIO_BSRR_BR4_Msk (0x1U << GPIO_BSRR_BR4_Pos) /*!< 0x00100000 */ |
|
1493 | #define GPIO_BSRR_BR4 ((uint32_t)0x00100000) /*!< Port x Reset bit 4 */ |
2093 | #define GPIO_BSRR_BR4 GPIO_BSRR_BR4_Msk /*!< Port x Reset bit 4 */ |
- | 2094 | #define GPIO_BSRR_BR5_Pos (21U) |
|
- | 2095 | #define GPIO_BSRR_BR5_Msk (0x1U << GPIO_BSRR_BR5_Pos) /*!< 0x00200000 */ |
|
1494 | #define GPIO_BSRR_BR5 ((uint32_t)0x00200000) /*!< Port x Reset bit 5 */ |
2096 | #define GPIO_BSRR_BR5 GPIO_BSRR_BR5_Msk /*!< Port x Reset bit 5 */ |
- | 2097 | #define GPIO_BSRR_BR6_Pos (22U) |
|
- | 2098 | #define GPIO_BSRR_BR6_Msk (0x1U << GPIO_BSRR_BR6_Pos) /*!< 0x00400000 */ |
|
1495 | #define GPIO_BSRR_BR6 ((uint32_t)0x00400000) /*!< Port x Reset bit 6 */ |
2099 | #define GPIO_BSRR_BR6 GPIO_BSRR_BR6_Msk /*!< Port x Reset bit 6 */ |
- | 2100 | #define GPIO_BSRR_BR7_Pos (23U) |
|
- | 2101 | #define GPIO_BSRR_BR7_Msk (0x1U << GPIO_BSRR_BR7_Pos) /*!< 0x00800000 */ |
|
1496 | #define GPIO_BSRR_BR7 ((uint32_t)0x00800000) /*!< Port x Reset bit 7 */ |
2102 | #define GPIO_BSRR_BR7 GPIO_BSRR_BR7_Msk /*!< Port x Reset bit 7 */ |
- | 2103 | #define GPIO_BSRR_BR8_Pos (24U) |
|
- | 2104 | #define GPIO_BSRR_BR8_Msk (0x1U << GPIO_BSRR_BR8_Pos) /*!< 0x01000000 */ |
|
1497 | #define GPIO_BSRR_BR8 ((uint32_t)0x01000000) /*!< Port x Reset bit 8 */ |
2105 | #define GPIO_BSRR_BR8 GPIO_BSRR_BR8_Msk /*!< Port x Reset bit 8 */ |
- | 2106 | #define GPIO_BSRR_BR9_Pos (25U) |
|
- | 2107 | #define GPIO_BSRR_BR9_Msk (0x1U << GPIO_BSRR_BR9_Pos) /*!< 0x02000000 */ |
|
1498 | #define GPIO_BSRR_BR9 ((uint32_t)0x02000000) /*!< Port x Reset bit 9 */ |
2108 | #define GPIO_BSRR_BR9 GPIO_BSRR_BR9_Msk /*!< Port x Reset bit 9 */ |
- | 2109 | #define GPIO_BSRR_BR10_Pos (26U) |
|
- | 2110 | #define GPIO_BSRR_BR10_Msk (0x1U << GPIO_BSRR_BR10_Pos) /*!< 0x04000000 */ |
|
1499 | #define GPIO_BSRR_BR10 ((uint32_t)0x04000000) /*!< Port x Reset bit 10 */ |
2111 | #define GPIO_BSRR_BR10 GPIO_BSRR_BR10_Msk /*!< Port x Reset bit 10 */ |
- | 2112 | #define GPIO_BSRR_BR11_Pos (27U) |
|
- | 2113 | #define GPIO_BSRR_BR11_Msk (0x1U << GPIO_BSRR_BR11_Pos) /*!< 0x08000000 */ |
|
1500 | #define GPIO_BSRR_BR11 ((uint32_t)0x08000000) /*!< Port x Reset bit 11 */ |
2114 | #define GPIO_BSRR_BR11 GPIO_BSRR_BR11_Msk /*!< Port x Reset bit 11 */ |
- | 2115 | #define GPIO_BSRR_BR12_Pos (28U) |
|
- | 2116 | #define GPIO_BSRR_BR12_Msk (0x1U << GPIO_BSRR_BR12_Pos) /*!< 0x10000000 */ |
|
1501 | #define GPIO_BSRR_BR12 ((uint32_t)0x10000000) /*!< Port x Reset bit 12 */ |
2117 | #define GPIO_BSRR_BR12 GPIO_BSRR_BR12_Msk /*!< Port x Reset bit 12 */ |
- | 2118 | #define GPIO_BSRR_BR13_Pos (29U) |
|
- | 2119 | #define GPIO_BSRR_BR13_Msk (0x1U << GPIO_BSRR_BR13_Pos) /*!< 0x20000000 */ |
|
1502 | #define GPIO_BSRR_BR13 ((uint32_t)0x20000000) /*!< Port x Reset bit 13 */ |
2120 | #define GPIO_BSRR_BR13 GPIO_BSRR_BR13_Msk /*!< Port x Reset bit 13 */ |
- | 2121 | #define GPIO_BSRR_BR14_Pos (30U) |
|
- | 2122 | #define GPIO_BSRR_BR14_Msk (0x1U << GPIO_BSRR_BR14_Pos) /*!< 0x40000000 */ |
|
1503 | #define GPIO_BSRR_BR14 ((uint32_t)0x40000000) /*!< Port x Reset bit 14 */ |
2123 | #define GPIO_BSRR_BR14 GPIO_BSRR_BR14_Msk /*!< Port x Reset bit 14 */ |
- | 2124 | #define GPIO_BSRR_BR15_Pos (31U) |
|
- | 2125 | #define GPIO_BSRR_BR15_Msk (0x1U << GPIO_BSRR_BR15_Pos) /*!< 0x80000000 */ |
|
1504 | #define GPIO_BSRR_BR15 ((uint32_t)0x80000000) /*!< Port x Reset bit 15 */ |
2126 | #define GPIO_BSRR_BR15 GPIO_BSRR_BR15_Msk /*!< Port x Reset bit 15 */ |
1505 | 2127 | ||
1506 | /******************* Bit definition for GPIO_BRR register *******************/ |
2128 | /******************* Bit definition for GPIO_BRR register *******************/ |
- | 2129 | #define GPIO_BRR_BR0_Pos (0U) |
|
- | 2130 | #define GPIO_BRR_BR0_Msk (0x1U << GPIO_BRR_BR0_Pos) /*!< 0x00000001 */ |
|
1507 | #define GPIO_BRR_BR0 ((uint32_t)0x0001) /*!< Port x Reset bit 0 */ |
2131 | #define GPIO_BRR_BR0 GPIO_BRR_BR0_Msk /*!< Port x Reset bit 0 */ |
- | 2132 | #define GPIO_BRR_BR1_Pos (1U) |
|
- | 2133 | #define GPIO_BRR_BR1_Msk (0x1U << GPIO_BRR_BR1_Pos) /*!< 0x00000002 */ |
|
1508 | #define GPIO_BRR_BR1 ((uint32_t)0x0002) /*!< Port x Reset bit 1 */ |
2134 | #define GPIO_BRR_BR1 GPIO_BRR_BR1_Msk /*!< Port x Reset bit 1 */ |
- | 2135 | #define GPIO_BRR_BR2_Pos (2U) |
|
- | 2136 | #define GPIO_BRR_BR2_Msk (0x1U << GPIO_BRR_BR2_Pos) /*!< 0x00000004 */ |
|
1509 | #define GPIO_BRR_BR2 ((uint32_t)0x0004) /*!< Port x Reset bit 2 */ |
2137 | #define GPIO_BRR_BR2 GPIO_BRR_BR2_Msk /*!< Port x Reset bit 2 */ |
- | 2138 | #define GPIO_BRR_BR3_Pos (3U) |
|
- | 2139 | #define GPIO_BRR_BR3_Msk (0x1U << GPIO_BRR_BR3_Pos) /*!< 0x00000008 */ |
|
1510 | #define GPIO_BRR_BR3 ((uint32_t)0x0008) /*!< Port x Reset bit 3 */ |
2140 | #define GPIO_BRR_BR3 GPIO_BRR_BR3_Msk /*!< Port x Reset bit 3 */ |
- | 2141 | #define GPIO_BRR_BR4_Pos (4U) |
|
- | 2142 | #define GPIO_BRR_BR4_Msk (0x1U << GPIO_BRR_BR4_Pos) /*!< 0x00000010 */ |
|
1511 | #define GPIO_BRR_BR4 ((uint32_t)0x0010) /*!< Port x Reset bit 4 */ |
2143 | #define GPIO_BRR_BR4 GPIO_BRR_BR4_Msk /*!< Port x Reset bit 4 */ |
- | 2144 | #define GPIO_BRR_BR5_Pos (5U) |
|
- | 2145 | #define GPIO_BRR_BR5_Msk (0x1U << GPIO_BRR_BR5_Pos) /*!< 0x00000020 */ |
|
1512 | #define GPIO_BRR_BR5 ((uint32_t)0x0020) /*!< Port x Reset bit 5 */ |
2146 | #define GPIO_BRR_BR5 GPIO_BRR_BR5_Msk /*!< Port x Reset bit 5 */ |
- | 2147 | #define GPIO_BRR_BR6_Pos (6U) |
|
- | 2148 | #define GPIO_BRR_BR6_Msk (0x1U << GPIO_BRR_BR6_Pos) /*!< 0x00000040 */ |
|
1513 | #define GPIO_BRR_BR6 ((uint32_t)0x0040) /*!< Port x Reset bit 6 */ |
2149 | #define GPIO_BRR_BR6 GPIO_BRR_BR6_Msk /*!< Port x Reset bit 6 */ |
- | 2150 | #define GPIO_BRR_BR7_Pos (7U) |
|
- | 2151 | #define GPIO_BRR_BR7_Msk (0x1U << GPIO_BRR_BR7_Pos) /*!< 0x00000080 */ |
|
1514 | #define GPIO_BRR_BR7 ((uint32_t)0x0080) /*!< Port x Reset bit 7 */ |
2152 | #define GPIO_BRR_BR7 GPIO_BRR_BR7_Msk /*!< Port x Reset bit 7 */ |
- | 2153 | #define GPIO_BRR_BR8_Pos (8U) |
|
- | 2154 | #define GPIO_BRR_BR8_Msk (0x1U << GPIO_BRR_BR8_Pos) /*!< 0x00000100 */ |
|
1515 | #define GPIO_BRR_BR8 ((uint32_t)0x0100) /*!< Port x Reset bit 8 */ |
2155 | #define GPIO_BRR_BR8 GPIO_BRR_BR8_Msk /*!< Port x Reset bit 8 */ |
- | 2156 | #define GPIO_BRR_BR9_Pos (9U) |
|
- | 2157 | #define GPIO_BRR_BR9_Msk (0x1U << GPIO_BRR_BR9_Pos) /*!< 0x00000200 */ |
|
1516 | #define GPIO_BRR_BR9 ((uint32_t)0x0200) /*!< Port x Reset bit 9 */ |
2158 | #define GPIO_BRR_BR9 GPIO_BRR_BR9_Msk /*!< Port x Reset bit 9 */ |
- | 2159 | #define GPIO_BRR_BR10_Pos (10U) |
|
- | 2160 | #define GPIO_BRR_BR10_Msk (0x1U << GPIO_BRR_BR10_Pos) /*!< 0x00000400 */ |
|
1517 | #define GPIO_BRR_BR10 ((uint32_t)0x0400) /*!< Port x Reset bit 10 */ |
2161 | #define GPIO_BRR_BR10 GPIO_BRR_BR10_Msk /*!< Port x Reset bit 10 */ |
- | 2162 | #define GPIO_BRR_BR11_Pos (11U) |
|
- | 2163 | #define GPIO_BRR_BR11_Msk (0x1U << GPIO_BRR_BR11_Pos) /*!< 0x00000800 */ |
|
1518 | #define GPIO_BRR_BR11 ((uint32_t)0x0800) /*!< Port x Reset bit 11 */ |
2164 | #define GPIO_BRR_BR11 GPIO_BRR_BR11_Msk /*!< Port x Reset bit 11 */ |
- | 2165 | #define GPIO_BRR_BR12_Pos (12U) |
|
- | 2166 | #define GPIO_BRR_BR12_Msk (0x1U << GPIO_BRR_BR12_Pos) /*!< 0x00001000 */ |
|
1519 | #define GPIO_BRR_BR12 ((uint32_t)0x1000) /*!< Port x Reset bit 12 */ |
2167 | #define GPIO_BRR_BR12 GPIO_BRR_BR12_Msk /*!< Port x Reset bit 12 */ |
- | 2168 | #define GPIO_BRR_BR13_Pos (13U) |
|
- | 2169 | #define GPIO_BRR_BR13_Msk (0x1U << GPIO_BRR_BR13_Pos) /*!< 0x00002000 */ |
|
1520 | #define GPIO_BRR_BR13 ((uint32_t)0x2000) /*!< Port x Reset bit 13 */ |
2170 | #define GPIO_BRR_BR13 GPIO_BRR_BR13_Msk /*!< Port x Reset bit 13 */ |
- | 2171 | #define GPIO_BRR_BR14_Pos (14U) |
|
- | 2172 | #define GPIO_BRR_BR14_Msk (0x1U << GPIO_BRR_BR14_Pos) /*!< 0x00004000 */ |
|
1521 | #define GPIO_BRR_BR14 ((uint32_t)0x4000) /*!< Port x Reset bit 14 */ |
2173 | #define GPIO_BRR_BR14 GPIO_BRR_BR14_Msk /*!< Port x Reset bit 14 */ |
- | 2174 | #define GPIO_BRR_BR15_Pos (15U) |
|
- | 2175 | #define GPIO_BRR_BR15_Msk (0x1U << GPIO_BRR_BR15_Pos) /*!< 0x00008000 */ |
|
1522 | #define GPIO_BRR_BR15 ((uint32_t)0x8000) /*!< Port x Reset bit 15 */ |
2176 | #define GPIO_BRR_BR15 GPIO_BRR_BR15_Msk /*!< Port x Reset bit 15 */ |
1523 | 2177 | ||
1524 | /****************** Bit definition for GPIO_LCKR register *******************/ |
2178 | /****************** Bit definition for GPIO_LCKR register *******************/ |
- | 2179 | #define GPIO_LCKR_LCK0_Pos (0U) |
|
- | 2180 | #define GPIO_LCKR_LCK0_Msk (0x1U << GPIO_LCKR_LCK0_Pos) /*!< 0x00000001 */ |
|
1525 | #define GPIO_LCKR_LCK0 ((uint32_t)0x00000001) /*!< Port x Lock bit 0 */ |
2181 | #define GPIO_LCKR_LCK0 GPIO_LCKR_LCK0_Msk /*!< Port x Lock bit 0 */ |
- | 2182 | #define GPIO_LCKR_LCK1_Pos (1U) |
|
- | 2183 | #define GPIO_LCKR_LCK1_Msk (0x1U << GPIO_LCKR_LCK1_Pos) /*!< 0x00000002 */ |
|
1526 | #define GPIO_LCKR_LCK1 ((uint32_t)0x00000002) /*!< Port x Lock bit 1 */ |
2184 | #define GPIO_LCKR_LCK1 GPIO_LCKR_LCK1_Msk /*!< Port x Lock bit 1 */ |
- | 2185 | #define GPIO_LCKR_LCK2_Pos (2U) |
|
- | 2186 | #define GPIO_LCKR_LCK2_Msk (0x1U << GPIO_LCKR_LCK2_Pos) /*!< 0x00000004 */ |
|
1527 | #define GPIO_LCKR_LCK2 ((uint32_t)0x00000004) /*!< Port x Lock bit 2 */ |
2187 | #define GPIO_LCKR_LCK2 GPIO_LCKR_LCK2_Msk /*!< Port x Lock bit 2 */ |
- | 2188 | #define GPIO_LCKR_LCK3_Pos (3U) |
|
- | 2189 | #define GPIO_LCKR_LCK3_Msk (0x1U << GPIO_LCKR_LCK3_Pos) /*!< 0x00000008 */ |
|
1528 | #define GPIO_LCKR_LCK3 ((uint32_t)0x00000008) /*!< Port x Lock bit 3 */ |
2190 | #define GPIO_LCKR_LCK3 GPIO_LCKR_LCK3_Msk /*!< Port x Lock bit 3 */ |
- | 2191 | #define GPIO_LCKR_LCK4_Pos (4U) |
|
- | 2192 | #define GPIO_LCKR_LCK4_Msk (0x1U << GPIO_LCKR_LCK4_Pos) /*!< 0x00000010 */ |
|
1529 | #define GPIO_LCKR_LCK4 ((uint32_t)0x00000010) /*!< Port x Lock bit 4 */ |
2193 | #define GPIO_LCKR_LCK4 GPIO_LCKR_LCK4_Msk /*!< Port x Lock bit 4 */ |
- | 2194 | #define GPIO_LCKR_LCK5_Pos (5U) |
|
- | 2195 | #define GPIO_LCKR_LCK5_Msk (0x1U << GPIO_LCKR_LCK5_Pos) /*!< 0x00000020 */ |
|
1530 | #define GPIO_LCKR_LCK5 ((uint32_t)0x00000020) /*!< Port x Lock bit 5 */ |
2196 | #define GPIO_LCKR_LCK5 GPIO_LCKR_LCK5_Msk /*!< Port x Lock bit 5 */ |
- | 2197 | #define GPIO_LCKR_LCK6_Pos (6U) |
|
- | 2198 | #define GPIO_LCKR_LCK6_Msk (0x1U << GPIO_LCKR_LCK6_Pos) /*!< 0x00000040 */ |
|
1531 | #define GPIO_LCKR_LCK6 ((uint32_t)0x00000040) /*!< Port x Lock bit 6 */ |
2199 | #define GPIO_LCKR_LCK6 GPIO_LCKR_LCK6_Msk /*!< Port x Lock bit 6 */ |
- | 2200 | #define GPIO_LCKR_LCK7_Pos (7U) |
|
- | 2201 | #define GPIO_LCKR_LCK7_Msk (0x1U << GPIO_LCKR_LCK7_Pos) /*!< 0x00000080 */ |
|
1532 | #define GPIO_LCKR_LCK7 ((uint32_t)0x00000080) /*!< Port x Lock bit 7 */ |
2202 | #define GPIO_LCKR_LCK7 GPIO_LCKR_LCK7_Msk /*!< Port x Lock bit 7 */ |
- | 2203 | #define GPIO_LCKR_LCK8_Pos (8U) |
|
- | 2204 | #define GPIO_LCKR_LCK8_Msk (0x1U << GPIO_LCKR_LCK8_Pos) /*!< 0x00000100 */ |
|
1533 | #define GPIO_LCKR_LCK8 ((uint32_t)0x00000100) /*!< Port x Lock bit 8 */ |
2205 | #define GPIO_LCKR_LCK8 GPIO_LCKR_LCK8_Msk /*!< Port x Lock bit 8 */ |
- | 2206 | #define GPIO_LCKR_LCK9_Pos (9U) |
|
- | 2207 | #define GPIO_LCKR_LCK9_Msk (0x1U << GPIO_LCKR_LCK9_Pos) /*!< 0x00000200 */ |
|
1534 | #define GPIO_LCKR_LCK9 ((uint32_t)0x00000200) /*!< Port x Lock bit 9 */ |
2208 | #define GPIO_LCKR_LCK9 GPIO_LCKR_LCK9_Msk /*!< Port x Lock bit 9 */ |
- | 2209 | #define GPIO_LCKR_LCK10_Pos (10U) |
|
- | 2210 | #define GPIO_LCKR_LCK10_Msk (0x1U << GPIO_LCKR_LCK10_Pos) /*!< 0x00000400 */ |
|
1535 | #define GPIO_LCKR_LCK10 ((uint32_t)0x00000400) /*!< Port x Lock bit 10 */ |
2211 | #define GPIO_LCKR_LCK10 GPIO_LCKR_LCK10_Msk /*!< Port x Lock bit 10 */ |
- | 2212 | #define GPIO_LCKR_LCK11_Pos (11U) |
|
- | 2213 | #define GPIO_LCKR_LCK11_Msk (0x1U << GPIO_LCKR_LCK11_Pos) /*!< 0x00000800 */ |
|
1536 | #define GPIO_LCKR_LCK11 ((uint32_t)0x00000800) /*!< Port x Lock bit 11 */ |
2214 | #define GPIO_LCKR_LCK11 GPIO_LCKR_LCK11_Msk /*!< Port x Lock bit 11 */ |
- | 2215 | #define GPIO_LCKR_LCK12_Pos (12U) |
|
- | 2216 | #define GPIO_LCKR_LCK12_Msk (0x1U << GPIO_LCKR_LCK12_Pos) /*!< 0x00001000 */ |
|
1537 | #define GPIO_LCKR_LCK12 ((uint32_t)0x00001000) /*!< Port x Lock bit 12 */ |
2217 | #define GPIO_LCKR_LCK12 GPIO_LCKR_LCK12_Msk /*!< Port x Lock bit 12 */ |
- | 2218 | #define GPIO_LCKR_LCK13_Pos (13U) |
|
- | 2219 | #define GPIO_LCKR_LCK13_Msk (0x1U << GPIO_LCKR_LCK13_Pos) /*!< 0x00002000 */ |
|
1538 | #define GPIO_LCKR_LCK13 ((uint32_t)0x00002000) /*!< Port x Lock bit 13 */ |
2220 | #define GPIO_LCKR_LCK13 GPIO_LCKR_LCK13_Msk /*!< Port x Lock bit 13 */ |
- | 2221 | #define GPIO_LCKR_LCK14_Pos (14U) |
|
- | 2222 | #define GPIO_LCKR_LCK14_Msk (0x1U << GPIO_LCKR_LCK14_Pos) /*!< 0x00004000 */ |
|
1539 | #define GPIO_LCKR_LCK14 ((uint32_t)0x00004000) /*!< Port x Lock bit 14 */ |
2223 | #define GPIO_LCKR_LCK14 GPIO_LCKR_LCK14_Msk /*!< Port x Lock bit 14 */ |
- | 2224 | #define GPIO_LCKR_LCK15_Pos (15U) |
|
- | 2225 | #define GPIO_LCKR_LCK15_Msk (0x1U << GPIO_LCKR_LCK15_Pos) /*!< 0x00008000 */ |
|
1540 | #define GPIO_LCKR_LCK15 ((uint32_t)0x00008000) /*!< Port x Lock bit 15 */ |
2226 | #define GPIO_LCKR_LCK15 GPIO_LCKR_LCK15_Msk /*!< Port x Lock bit 15 */ |
- | 2227 | #define GPIO_LCKR_LCKK_Pos (16U) |
|
- | 2228 | #define GPIO_LCKR_LCKK_Msk (0x1U << GPIO_LCKR_LCKK_Pos) /*!< 0x00010000 */ |
|
1541 | #define GPIO_LCKR_LCKK ((uint32_t)0x00010000) /*!< Lock key */ |
2229 | #define GPIO_LCKR_LCKK GPIO_LCKR_LCKK_Msk /*!< Lock key */ |
1542 | 2230 | ||
1543 | /*----------------------------------------------------------------------------*/ |
2231 | /*----------------------------------------------------------------------------*/ |
1544 | 2232 | ||
1545 | /****************** Bit definition for AFIO_EVCR register *******************/ |
2233 | /****************** Bit definition for AFIO_EVCR register *******************/ |
- | 2234 | #define AFIO_EVCR_PIN_Pos (0U) |
|
- | 2235 | #define AFIO_EVCR_PIN_Msk (0xFU << AFIO_EVCR_PIN_Pos) /*!< 0x0000000F */ |
|
1546 | #define AFIO_EVCR_PIN ((uint32_t)0x0000000F) /*!< PIN[3:0] bits (Pin selection) */ |
2236 | #define AFIO_EVCR_PIN AFIO_EVCR_PIN_Msk /*!< PIN[3:0] bits (Pin selection) */ |
1547 | #define AFIO_EVCR_PIN_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
2237 | #define AFIO_EVCR_PIN_0 (0x1U << AFIO_EVCR_PIN_Pos) /*!< 0x00000001 */ |
1548 | #define AFIO_EVCR_PIN_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
2238 | #define AFIO_EVCR_PIN_1 (0x2U << AFIO_EVCR_PIN_Pos) /*!< 0x00000002 */ |
1549 | #define AFIO_EVCR_PIN_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
2239 | #define AFIO_EVCR_PIN_2 (0x4U << AFIO_EVCR_PIN_Pos) /*!< 0x00000004 */ |
1550 | #define AFIO_EVCR_PIN_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
2240 | #define AFIO_EVCR_PIN_3 (0x8U << AFIO_EVCR_PIN_Pos) /*!< 0x00000008 */ |
1551 | 2241 | ||
1552 | /*!< PIN configuration */ |
2242 | /*!< PIN configuration */ |
1553 | #define AFIO_EVCR_PIN_PX0 ((uint32_t)0x00000000) /*!< Pin 0 selected */ |
2243 | #define AFIO_EVCR_PIN_PX0 ((uint32_t)0x00000000) /*!< Pin 0 selected */ |
- | 2244 | #define AFIO_EVCR_PIN_PX1_Pos (0U) |
|
- | 2245 | #define AFIO_EVCR_PIN_PX1_Msk (0x1U << AFIO_EVCR_PIN_PX1_Pos) /*!< 0x00000001 */ |
|
1554 | #define AFIO_EVCR_PIN_PX1 ((uint32_t)0x00000001) /*!< Pin 1 selected */ |
2246 | #define AFIO_EVCR_PIN_PX1 AFIO_EVCR_PIN_PX1_Msk /*!< Pin 1 selected */ |
- | 2247 | #define AFIO_EVCR_PIN_PX2_Pos (1U) |
|
- | 2248 | #define AFIO_EVCR_PIN_PX2_Msk (0x1U << AFIO_EVCR_PIN_PX2_Pos) /*!< 0x00000002 */ |
|
1555 | #define AFIO_EVCR_PIN_PX2 ((uint32_t)0x00000002) /*!< Pin 2 selected */ |
2249 | #define AFIO_EVCR_PIN_PX2 AFIO_EVCR_PIN_PX2_Msk /*!< Pin 2 selected */ |
- | 2250 | #define AFIO_EVCR_PIN_PX3_Pos (0U) |
|
- | 2251 | #define AFIO_EVCR_PIN_PX3_Msk (0x3U << AFIO_EVCR_PIN_PX3_Pos) /*!< 0x00000003 */ |
|
1556 | #define AFIO_EVCR_PIN_PX3 ((uint32_t)0x00000003) /*!< Pin 3 selected */ |
2252 | #define AFIO_EVCR_PIN_PX3 AFIO_EVCR_PIN_PX3_Msk /*!< Pin 3 selected */ |
- | 2253 | #define AFIO_EVCR_PIN_PX4_Pos (2U) |
|
- | 2254 | #define AFIO_EVCR_PIN_PX4_Msk (0x1U << AFIO_EVCR_PIN_PX4_Pos) /*!< 0x00000004 */ |
|
1557 | #define AFIO_EVCR_PIN_PX4 ((uint32_t)0x00000004) /*!< Pin 4 selected */ |
2255 | #define AFIO_EVCR_PIN_PX4 AFIO_EVCR_PIN_PX4_Msk /*!< Pin 4 selected */ |
- | 2256 | #define AFIO_EVCR_PIN_PX5_Pos (0U) |
|
- | 2257 | #define AFIO_EVCR_PIN_PX5_Msk (0x5U << AFIO_EVCR_PIN_PX5_Pos) /*!< 0x00000005 */ |
|
1558 | #define AFIO_EVCR_PIN_PX5 ((uint32_t)0x00000005) /*!< Pin 5 selected */ |
2258 | #define AFIO_EVCR_PIN_PX5 AFIO_EVCR_PIN_PX5_Msk /*!< Pin 5 selected */ |
- | 2259 | #define AFIO_EVCR_PIN_PX6_Pos (1U) |
|
- | 2260 | #define AFIO_EVCR_PIN_PX6_Msk (0x3U << AFIO_EVCR_PIN_PX6_Pos) /*!< 0x00000006 */ |
|
1559 | #define AFIO_EVCR_PIN_PX6 ((uint32_t)0x00000006) /*!< Pin 6 selected */ |
2261 | #define AFIO_EVCR_PIN_PX6 AFIO_EVCR_PIN_PX6_Msk /*!< Pin 6 selected */ |
- | 2262 | #define AFIO_EVCR_PIN_PX7_Pos (0U) |
|
- | 2263 | #define AFIO_EVCR_PIN_PX7_Msk (0x7U << AFIO_EVCR_PIN_PX7_Pos) /*!< 0x00000007 */ |
|
1560 | #define AFIO_EVCR_PIN_PX7 ((uint32_t)0x00000007) /*!< Pin 7 selected */ |
2264 | #define AFIO_EVCR_PIN_PX7 AFIO_EVCR_PIN_PX7_Msk /*!< Pin 7 selected */ |
- | 2265 | #define AFIO_EVCR_PIN_PX8_Pos (3U) |
|
- | 2266 | #define AFIO_EVCR_PIN_PX8_Msk (0x1U << AFIO_EVCR_PIN_PX8_Pos) /*!< 0x00000008 */ |
|
1561 | #define AFIO_EVCR_PIN_PX8 ((uint32_t)0x00000008) /*!< Pin 8 selected */ |
2267 | #define AFIO_EVCR_PIN_PX8 AFIO_EVCR_PIN_PX8_Msk /*!< Pin 8 selected */ |
- | 2268 | #define AFIO_EVCR_PIN_PX9_Pos (0U) |
|
- | 2269 | #define AFIO_EVCR_PIN_PX9_Msk (0x9U << AFIO_EVCR_PIN_PX9_Pos) /*!< 0x00000009 */ |
|
1562 | #define AFIO_EVCR_PIN_PX9 ((uint32_t)0x00000009) /*!< Pin 9 selected */ |
2270 | #define AFIO_EVCR_PIN_PX9 AFIO_EVCR_PIN_PX9_Msk /*!< Pin 9 selected */ |
- | 2271 | #define AFIO_EVCR_PIN_PX10_Pos (1U) |
|
- | 2272 | #define AFIO_EVCR_PIN_PX10_Msk (0x5U << AFIO_EVCR_PIN_PX10_Pos) /*!< 0x0000000A */ |
|
1563 | #define AFIO_EVCR_PIN_PX10 ((uint32_t)0x0000000A) /*!< Pin 10 selected */ |
2273 | #define AFIO_EVCR_PIN_PX10 AFIO_EVCR_PIN_PX10_Msk /*!< Pin 10 selected */ |
- | 2274 | #define AFIO_EVCR_PIN_PX11_Pos (0U) |
|
- | 2275 | #define AFIO_EVCR_PIN_PX11_Msk (0xBU << AFIO_EVCR_PIN_PX11_Pos) /*!< 0x0000000B */ |
|
1564 | #define AFIO_EVCR_PIN_PX11 ((uint32_t)0x0000000B) /*!< Pin 11 selected */ |
2276 | #define AFIO_EVCR_PIN_PX11 AFIO_EVCR_PIN_PX11_Msk /*!< Pin 11 selected */ |
- | 2277 | #define AFIO_EVCR_PIN_PX12_Pos (2U) |
|
- | 2278 | #define AFIO_EVCR_PIN_PX12_Msk (0x3U << AFIO_EVCR_PIN_PX12_Pos) /*!< 0x0000000C */ |
|
1565 | #define AFIO_EVCR_PIN_PX12 ((uint32_t)0x0000000C) /*!< Pin 12 selected */ |
2279 | #define AFIO_EVCR_PIN_PX12 AFIO_EVCR_PIN_PX12_Msk /*!< Pin 12 selected */ |
- | 2280 | #define AFIO_EVCR_PIN_PX13_Pos (0U) |
|
- | 2281 | #define AFIO_EVCR_PIN_PX13_Msk (0xDU << AFIO_EVCR_PIN_PX13_Pos) /*!< 0x0000000D */ |
|
1566 | #define AFIO_EVCR_PIN_PX13 ((uint32_t)0x0000000D) /*!< Pin 13 selected */ |
2282 | #define AFIO_EVCR_PIN_PX13 AFIO_EVCR_PIN_PX13_Msk /*!< Pin 13 selected */ |
- | 2283 | #define AFIO_EVCR_PIN_PX14_Pos (1U) |
|
- | 2284 | #define AFIO_EVCR_PIN_PX14_Msk (0x7U << AFIO_EVCR_PIN_PX14_Pos) /*!< 0x0000000E */ |
|
1567 | #define AFIO_EVCR_PIN_PX14 ((uint32_t)0x0000000E) /*!< Pin 14 selected */ |
2285 | #define AFIO_EVCR_PIN_PX14 AFIO_EVCR_PIN_PX14_Msk /*!< Pin 14 selected */ |
- | 2286 | #define AFIO_EVCR_PIN_PX15_Pos (0U) |
|
- | 2287 | #define AFIO_EVCR_PIN_PX15_Msk (0xFU << AFIO_EVCR_PIN_PX15_Pos) /*!< 0x0000000F */ |
|
1568 | #define AFIO_EVCR_PIN_PX15 ((uint32_t)0x0000000F) /*!< Pin 15 selected */ |
2288 | #define AFIO_EVCR_PIN_PX15 AFIO_EVCR_PIN_PX15_Msk /*!< Pin 15 selected */ |
1569 | 2289 | ||
- | 2290 | #define AFIO_EVCR_PORT_Pos (4U) |
|
- | 2291 | #define AFIO_EVCR_PORT_Msk (0x7U << AFIO_EVCR_PORT_Pos) /*!< 0x00000070 */ |
|
1570 | #define AFIO_EVCR_PORT ((uint32_t)0x00000070) /*!< PORT[2:0] bits (Port selection) */ |
2292 | #define AFIO_EVCR_PORT AFIO_EVCR_PORT_Msk /*!< PORT[2:0] bits (Port selection) */ |
1571 | #define AFIO_EVCR_PORT_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
2293 | #define AFIO_EVCR_PORT_0 (0x1U << AFIO_EVCR_PORT_Pos) /*!< 0x00000010 */ |
1572 | #define AFIO_EVCR_PORT_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
2294 | #define AFIO_EVCR_PORT_1 (0x2U << AFIO_EVCR_PORT_Pos) /*!< 0x00000020 */ |
1573 | #define AFIO_EVCR_PORT_2 ((uint32_t)0x00000040) /*!< Bit 2 */ |
2295 | #define AFIO_EVCR_PORT_2 (0x4U << AFIO_EVCR_PORT_Pos) /*!< 0x00000040 */ |
1574 | 2296 | ||
1575 | /*!< PORT configuration */ |
2297 | /*!< PORT configuration */ |
1576 | #define AFIO_EVCR_PORT_PA ((uint32_t)0x00000000) /*!< Port A selected */ |
2298 | #define AFIO_EVCR_PORT_PA ((uint32_t)0x00000000) /*!< Port A selected */ |
- | 2299 | #define AFIO_EVCR_PORT_PB_Pos (4U) |
|
- | 2300 | #define AFIO_EVCR_PORT_PB_Msk (0x1U << AFIO_EVCR_PORT_PB_Pos) /*!< 0x00000010 */ |
|
1577 | #define AFIO_EVCR_PORT_PB ((uint32_t)0x00000010) /*!< Port B selected */ |
2301 | #define AFIO_EVCR_PORT_PB AFIO_EVCR_PORT_PB_Msk /*!< Port B selected */ |
- | 2302 | #define AFIO_EVCR_PORT_PC_Pos (5U) |
|
- | 2303 | #define AFIO_EVCR_PORT_PC_Msk (0x1U << AFIO_EVCR_PORT_PC_Pos) /*!< 0x00000020 */ |
|
1578 | #define AFIO_EVCR_PORT_PC ((uint32_t)0x00000020) /*!< Port C selected */ |
2304 | #define AFIO_EVCR_PORT_PC AFIO_EVCR_PORT_PC_Msk /*!< Port C selected */ |
- | 2305 | #define AFIO_EVCR_PORT_PD_Pos (4U) |
|
- | 2306 | #define AFIO_EVCR_PORT_PD_Msk (0x3U << AFIO_EVCR_PORT_PD_Pos) /*!< 0x00000030 */ |
|
1579 | #define AFIO_EVCR_PORT_PD ((uint32_t)0x00000030) /*!< Port D selected */ |
2307 | #define AFIO_EVCR_PORT_PD AFIO_EVCR_PORT_PD_Msk /*!< Port D selected */ |
- | 2308 | #define AFIO_EVCR_PORT_PE_Pos (6U) |
|
- | 2309 | #define AFIO_EVCR_PORT_PE_Msk (0x1U << AFIO_EVCR_PORT_PE_Pos) /*!< 0x00000040 */ |
|
1580 | #define AFIO_EVCR_PORT_PE ((uint32_t)0x00000040) /*!< Port E selected */ |
2310 | #define AFIO_EVCR_PORT_PE AFIO_EVCR_PORT_PE_Msk /*!< Port E selected */ |
1581 | 2311 | ||
- | 2312 | #define AFIO_EVCR_EVOE_Pos (7U) |
|
- | 2313 | #define AFIO_EVCR_EVOE_Msk (0x1U << AFIO_EVCR_EVOE_Pos) /*!< 0x00000080 */ |
|
1582 | #define AFIO_EVCR_EVOE ((uint32_t)0x00000080) /*!< Event Output Enable */ |
2314 | #define AFIO_EVCR_EVOE AFIO_EVCR_EVOE_Msk /*!< Event Output Enable */ |
1583 | 2315 | ||
1584 | /****************** Bit definition for AFIO_MAPR register *******************/ |
2316 | /****************** Bit definition for AFIO_MAPR register *******************/ |
- | 2317 | #define AFIO_MAPR_SPI1_REMAP_Pos (0U) |
|
- | 2318 | #define AFIO_MAPR_SPI1_REMAP_Msk (0x1U << AFIO_MAPR_SPI1_REMAP_Pos) /*!< 0x00000001 */ |
|
1585 | #define AFIO_MAPR_SPI1_REMAP ((uint32_t)0x00000001) /*!< SPI1 remapping */ |
2319 | #define AFIO_MAPR_SPI1_REMAP AFIO_MAPR_SPI1_REMAP_Msk /*!< SPI1 remapping */ |
- | 2320 | #define AFIO_MAPR_I2C1_REMAP_Pos (1U) |
|
- | 2321 | #define AFIO_MAPR_I2C1_REMAP_Msk (0x1U << AFIO_MAPR_I2C1_REMAP_Pos) /*!< 0x00000002 */ |
|
1586 | #define AFIO_MAPR_I2C1_REMAP ((uint32_t)0x00000002) /*!< I2C1 remapping */ |
2322 | #define AFIO_MAPR_I2C1_REMAP AFIO_MAPR_I2C1_REMAP_Msk /*!< I2C1 remapping */ |
- | 2323 | #define AFIO_MAPR_USART1_REMAP_Pos (2U) |
|
- | 2324 | #define AFIO_MAPR_USART1_REMAP_Msk (0x1U << AFIO_MAPR_USART1_REMAP_Pos) /*!< 0x00000004 */ |
|
1587 | #define AFIO_MAPR_USART1_REMAP ((uint32_t)0x00000004) /*!< USART1 remapping */ |
2325 | #define AFIO_MAPR_USART1_REMAP AFIO_MAPR_USART1_REMAP_Msk /*!< USART1 remapping */ |
- | 2326 | #define AFIO_MAPR_USART2_REMAP_Pos (3U) |
|
- | 2327 | #define AFIO_MAPR_USART2_REMAP_Msk (0x1U << AFIO_MAPR_USART2_REMAP_Pos) /*!< 0x00000008 */ |
|
1588 | #define AFIO_MAPR_USART2_REMAP ((uint32_t)0x00000008) /*!< USART2 remapping */ |
2328 | #define AFIO_MAPR_USART2_REMAP AFIO_MAPR_USART2_REMAP_Msk /*!< USART2 remapping */ |
1589 | 2329 | ||
- | 2330 | #define AFIO_MAPR_USART3_REMAP_Pos (4U) |
|
- | 2331 | #define AFIO_MAPR_USART3_REMAP_Msk (0x3U << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000030 */ |
|
1590 | #define AFIO_MAPR_USART3_REMAP ((uint32_t)0x00000030) /*!< USART3_REMAP[1:0] bits (USART3 remapping) */ |
2332 | #define AFIO_MAPR_USART3_REMAP AFIO_MAPR_USART3_REMAP_Msk /*!< USART3_REMAP[1:0] bits (USART3 remapping) */ |
1591 | #define AFIO_MAPR_USART3_REMAP_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
2333 | #define AFIO_MAPR_USART3_REMAP_0 (0x1U << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000010 */ |
1592 | #define AFIO_MAPR_USART3_REMAP_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
2334 | #define AFIO_MAPR_USART3_REMAP_1 (0x2U << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000020 */ |
1593 | 2335 | ||
1594 | /* USART3_REMAP configuration */ |
2336 | /* USART3_REMAP configuration */ |
1595 | #define AFIO_MAPR_USART3_REMAP_NOREMAP ((uint32_t)0x00000000) /*!< No remap (TX/PB10, RX/PB11, CK/PB12, CTS/PB13, RTS/PB14) */ |
2337 | #define AFIO_MAPR_USART3_REMAP_NOREMAP ((uint32_t)0x00000000) /*!< No remap (TX/PB10, RX/PB11, CK/PB12, CTS/PB13, RTS/PB14) */ |
- | 2338 | #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Pos (4U) |
|
- | 2339 | #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Msk (0x1U << AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Pos) /*!< 0x00000010 */ |
|
1596 | #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP ((uint32_t)0x00000010) /*!< Partial remap (TX/PC10, RX/PC11, CK/PC12, CTS/PB13, RTS/PB14) */ |
2340 | #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Msk /*!< Partial remap (TX/PC10, RX/PC11, CK/PC12, CTS/PB13, RTS/PB14) */ |
- | 2341 | #define AFIO_MAPR_USART3_REMAP_FULLREMAP_Pos (4U) |
|
- | 2342 | #define AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk (0x3U << AFIO_MAPR_USART3_REMAP_FULLREMAP_Pos) /*!< 0x00000030 */ |
|
1597 | #define AFIO_MAPR_USART3_REMAP_FULLREMAP ((uint32_t)0x00000030) /*!< Full remap (TX/PD8, RX/PD9, CK/PD10, CTS/PD11, RTS/PD12) */ |
2343 | #define AFIO_MAPR_USART3_REMAP_FULLREMAP AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk /*!< Full remap (TX/PD8, RX/PD9, CK/PD10, CTS/PD11, RTS/PD12) */ |
1598 | 2344 | ||
- | 2345 | #define AFIO_MAPR_TIM1_REMAP_Pos (6U) |
|
- | 2346 | #define AFIO_MAPR_TIM1_REMAP_Msk (0x3U << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x000000C0 */ |
|
1599 | #define AFIO_MAPR_TIM1_REMAP ((uint32_t)0x000000C0) /*!< TIM1_REMAP[1:0] bits (TIM1 remapping) */ |
2347 | #define AFIO_MAPR_TIM1_REMAP AFIO_MAPR_TIM1_REMAP_Msk /*!< TIM1_REMAP[1:0] bits (TIM1 remapping) */ |
1600 | #define AFIO_MAPR_TIM1_REMAP_0 ((uint32_t)0x00000040) /*!< Bit 0 */ |
2348 | #define AFIO_MAPR_TIM1_REMAP_0 (0x1U << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x00000040 */ |
1601 | #define AFIO_MAPR_TIM1_REMAP_1 ((uint32_t)0x00000080) /*!< Bit 1 */ |
2349 | #define AFIO_MAPR_TIM1_REMAP_1 (0x2U << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x00000080 */ |
1602 | 2350 | ||
1603 | /*!< TIM1_REMAP configuration */ |
2351 | /*!< TIM1_REMAP configuration */ |
1604 | #define AFIO_MAPR_TIM1_REMAP_NOREMAP ((uint32_t)0x00000000) /*!< No remap (ETR/PA12, CH1/PA8, CH2/PA9, CH3/PA10, CH4/PA11, BKIN/PB12, CH1N/PB13, CH2N/PB14, CH3N/PB15) */ |
2352 | #define AFIO_MAPR_TIM1_REMAP_NOREMAP ((uint32_t)0x00000000) /*!< No remap (ETR/PA12, CH1/PA8, CH2/PA9, CH3/PA10, CH4/PA11, BKIN/PB12, CH1N/PB13, CH2N/PB14, CH3N/PB15) */ |
- | 2353 | #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Pos (6U) |
|
- | 2354 | #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Msk (0x1U << AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Pos) /*!< 0x00000040 */ |
|
1605 | #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP ((uint32_t)0x00000040) /*!< Partial remap (ETR/PA12, CH1/PA8, CH2/PA9, CH3/PA10, CH4/PA11, BKIN/PA6, CH1N/PA7, CH2N/PB0, CH3N/PB1) */ |
2355 | #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Msk /*!< Partial remap (ETR/PA12, CH1/PA8, CH2/PA9, CH3/PA10, CH4/PA11, BKIN/PA6, CH1N/PA7, CH2N/PB0, CH3N/PB1) */ |
- | 2356 | #define AFIO_MAPR_TIM1_REMAP_FULLREMAP_Pos (6U) |
|
- | 2357 | #define AFIO_MAPR_TIM1_REMAP_FULLREMAP_Msk (0x3U << AFIO_MAPR_TIM1_REMAP_FULLREMAP_Pos) /*!< 0x000000C0 */ |
|
1606 | #define AFIO_MAPR_TIM1_REMAP_FULLREMAP ((uint32_t)0x000000C0) /*!< Full remap (ETR/PE7, CH1/PE9, CH2/PE11, CH3/PE13, CH4/PE14, BKIN/PE15, CH1N/PE8, CH2N/PE10, CH3N/PE12) */ |
2358 | #define AFIO_MAPR_TIM1_REMAP_FULLREMAP AFIO_MAPR_TIM1_REMAP_FULLREMAP_Msk /*!< Full remap (ETR/PE7, CH1/PE9, CH2/PE11, CH3/PE13, CH4/PE14, BKIN/PE15, CH1N/PE8, CH2N/PE10, CH3N/PE12) */ |
1607 | 2359 | ||
- | 2360 | #define AFIO_MAPR_TIM2_REMAP_Pos (8U) |
|
- | 2361 | #define AFIO_MAPR_TIM2_REMAP_Msk (0x3U << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000300 */ |
|
1608 | #define AFIO_MAPR_TIM2_REMAP ((uint32_t)0x00000300) /*!< TIM2_REMAP[1:0] bits (TIM2 remapping) */ |
2362 | #define AFIO_MAPR_TIM2_REMAP AFIO_MAPR_TIM2_REMAP_Msk /*!< TIM2_REMAP[1:0] bits (TIM2 remapping) */ |
1609 | #define AFIO_MAPR_TIM2_REMAP_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
2363 | #define AFIO_MAPR_TIM2_REMAP_0 (0x1U << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000100 */ |
1610 | #define AFIO_MAPR_TIM2_REMAP_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
2364 | #define AFIO_MAPR_TIM2_REMAP_1 (0x2U << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000200 */ |
1611 | 2365 | ||
1612 | /*!< TIM2_REMAP configuration */ |
2366 | /*!< TIM2_REMAP configuration */ |
1613 | #define AFIO_MAPR_TIM2_REMAP_NOREMAP ((uint32_t)0x00000000) /*!< No remap (CH1/ETR/PA0, CH2/PA1, CH3/PA2, CH4/PA3) */ |
2367 | #define AFIO_MAPR_TIM2_REMAP_NOREMAP ((uint32_t)0x00000000) /*!< No remap (CH1/ETR/PA0, CH2/PA1, CH3/PA2, CH4/PA3) */ |
- | 2368 | #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Pos (8U) |
|
- | 2369 | #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Msk (0x1U << AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Pos) /*!< 0x00000100 */ |
|
1614 | #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1 ((uint32_t)0x00000100) /*!< Partial remap (CH1/ETR/PA15, CH2/PB3, CH3/PA2, CH4/PA3) */ |
2370 | #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1 AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Msk /*!< Partial remap (CH1/ETR/PA15, CH2/PB3, CH3/PA2, CH4/PA3) */ |
- | 2371 | #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Pos (9U) |
|
- | 2372 | #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Msk (0x1U << AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Pos) /*!< 0x00000200 */ |
|
1615 | #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2 ((uint32_t)0x00000200) /*!< Partial remap (CH1/ETR/PA0, CH2/PA1, CH3/PB10, CH4/PB11) */ |
2373 | #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2 AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Msk /*!< Partial remap (CH1/ETR/PA0, CH2/PA1, CH3/PB10, CH4/PB11) */ |
- | 2374 | #define AFIO_MAPR_TIM2_REMAP_FULLREMAP_Pos (8U) |
|
- | 2375 | #define AFIO_MAPR_TIM2_REMAP_FULLREMAP_Msk (0x3U << AFIO_MAPR_TIM2_REMAP_FULLREMAP_Pos) /*!< 0x00000300 */ |
|
1616 | #define AFIO_MAPR_TIM2_REMAP_FULLREMAP ((uint32_t)0x00000300) /*!< Full remap (CH1/ETR/PA15, CH2/PB3, CH3/PB10, CH4/PB11) */ |
2376 | #define AFIO_MAPR_TIM2_REMAP_FULLREMAP AFIO_MAPR_TIM2_REMAP_FULLREMAP_Msk /*!< Full remap (CH1/ETR/PA15, CH2/PB3, CH3/PB10, CH4/PB11) */ |
1617 | 2377 | ||
- | 2378 | #define AFIO_MAPR_TIM3_REMAP_Pos (10U) |
|
- | 2379 | #define AFIO_MAPR_TIM3_REMAP_Msk (0x3U << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000C00 */ |
|
1618 | #define AFIO_MAPR_TIM3_REMAP ((uint32_t)0x00000C00) /*!< TIM3_REMAP[1:0] bits (TIM3 remapping) */ |
2380 | #define AFIO_MAPR_TIM3_REMAP AFIO_MAPR_TIM3_REMAP_Msk /*!< TIM3_REMAP[1:0] bits (TIM3 remapping) */ |
1619 | #define AFIO_MAPR_TIM3_REMAP_0 ((uint32_t)0x00000400) /*!< Bit 0 */ |
2381 | #define AFIO_MAPR_TIM3_REMAP_0 (0x1U << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000400 */ |
1620 | #define AFIO_MAPR_TIM3_REMAP_1 ((uint32_t)0x00000800) /*!< Bit 1 */ |
2382 | #define AFIO_MAPR_TIM3_REMAP_1 (0x2U << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000800 */ |
1621 | 2383 | ||
1622 | /*!< TIM3_REMAP configuration */ |
2384 | /*!< TIM3_REMAP configuration */ |
1623 | #define AFIO_MAPR_TIM3_REMAP_NOREMAP ((uint32_t)0x00000000) /*!< No remap (CH1/PA6, CH2/PA7, CH3/PB0, CH4/PB1) */ |
2385 | #define AFIO_MAPR_TIM3_REMAP_NOREMAP ((uint32_t)0x00000000) /*!< No remap (CH1/PA6, CH2/PA7, CH3/PB0, CH4/PB1) */ |
- | 2386 | #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Pos (11U) |
|
- | 2387 | #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Msk (0x1U << AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Pos) /*!< 0x00000800 */ |
|
1624 | #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP ((uint32_t)0x00000800) /*!< Partial remap (CH1/PB4, CH2/PB5, CH3/PB0, CH4/PB1) */ |
2388 | #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Msk /*!< Partial remap (CH1/PB4, CH2/PB5, CH3/PB0, CH4/PB1) */ |
- | 2389 | #define AFIO_MAPR_TIM3_REMAP_FULLREMAP_Pos (10U) |
|
- | 2390 | #define AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk (0x3U << AFIO_MAPR_TIM3_REMAP_FULLREMAP_Pos) /*!< 0x00000C00 */ |
|
1625 | #define AFIO_MAPR_TIM3_REMAP_FULLREMAP ((uint32_t)0x00000C00) /*!< Full remap (CH1/PC6, CH2/PC7, CH3/PC8, CH4/PC9) */ |
2391 | #define AFIO_MAPR_TIM3_REMAP_FULLREMAP AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk /*!< Full remap (CH1/PC6, CH2/PC7, CH3/PC8, CH4/PC9) */ |
1626 | 2392 | ||
- | 2393 | #define AFIO_MAPR_TIM4_REMAP_Pos (12U) |
|
- | 2394 | #define AFIO_MAPR_TIM4_REMAP_Msk (0x1U << AFIO_MAPR_TIM4_REMAP_Pos) /*!< 0x00001000 */ |
|
1627 | #define AFIO_MAPR_TIM4_REMAP ((uint32_t)0x00001000) /*!< TIM4_REMAP bit (TIM4 remapping) */ |
2395 | #define AFIO_MAPR_TIM4_REMAP AFIO_MAPR_TIM4_REMAP_Msk /*!< TIM4_REMAP bit (TIM4 remapping) */ |
1628 | 2396 | ||
1629 | 2397 | ||
- | 2398 | #define AFIO_MAPR_PD01_REMAP_Pos (15U) |
|
- | 2399 | #define AFIO_MAPR_PD01_REMAP_Msk (0x1U << AFIO_MAPR_PD01_REMAP_Pos) /*!< 0x00008000 */ |
|
1630 | #define AFIO_MAPR_PD01_REMAP ((uint32_t)0x00008000) /*!< Port D0/Port D1 mapping on OSC_IN/OSC_OUT */ |
2400 | #define AFIO_MAPR_PD01_REMAP AFIO_MAPR_PD01_REMAP_Msk /*!< Port D0/Port D1 mapping on OSC_IN/OSC_OUT */ |
- | 2401 | #define AFIO_MAPR_TIM5CH4_IREMAP_Pos (16U) |
|
- | 2402 | #define AFIO_MAPR_TIM5CH4_IREMAP_Msk (0x1U << AFIO_MAPR_TIM5CH4_IREMAP_Pos) /*!< 0x00010000 */ |
|
1631 | #define AFIO_MAPR_TIM5CH4_IREMAP ((uint32_t)0x00010000) /*!< TIM5 Channel4 Internal Remap */ |
2403 | #define AFIO_MAPR_TIM5CH4_IREMAP AFIO_MAPR_TIM5CH4_IREMAP_Msk /*!< TIM5 Channel4 Internal Remap */ |
1632 | 2404 | ||
1633 | /*!< SWJ_CFG configuration */ |
2405 | /*!< SWJ_CFG configuration */ |
- | 2406 | #define AFIO_MAPR_SWJ_CFG_Pos (24U) |
|
- | 2407 | #define AFIO_MAPR_SWJ_CFG_Msk (0x7U << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x07000000 */ |
|
1634 | #define AFIO_MAPR_SWJ_CFG ((uint32_t)0x07000000) /*!< SWJ_CFG[2:0] bits (Serial Wire JTAG configuration) */ |
2408 | #define AFIO_MAPR_SWJ_CFG AFIO_MAPR_SWJ_CFG_Msk /*!< SWJ_CFG[2:0] bits (Serial Wire JTAG configuration) */ |
1635 | #define AFIO_MAPR_SWJ_CFG_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
2409 | #define AFIO_MAPR_SWJ_CFG_0 (0x1U << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x01000000 */ |
1636 | #define AFIO_MAPR_SWJ_CFG_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
2410 | #define AFIO_MAPR_SWJ_CFG_1 (0x2U << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x02000000 */ |
1637 | #define AFIO_MAPR_SWJ_CFG_2 ((uint32_t)0x04000000) /*!< Bit 2 */ |
2411 | #define AFIO_MAPR_SWJ_CFG_2 (0x4U << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x04000000 */ |
1638 | 2412 | ||
1639 | #define AFIO_MAPR_SWJ_CFG_RESET ((uint32_t)0x00000000) /*!< Full SWJ (JTAG-DP + SW-DP) : Reset State */ |
2413 | #define AFIO_MAPR_SWJ_CFG_RESET ((uint32_t)0x00000000) /*!< Full SWJ (JTAG-DP + SW-DP) : Reset State */ |
- | 2414 | #define AFIO_MAPR_SWJ_CFG_NOJNTRST_Pos (24U) |
|
- | 2415 | #define AFIO_MAPR_SWJ_CFG_NOJNTRST_Msk (0x1U << AFIO_MAPR_SWJ_CFG_NOJNTRST_Pos) /*!< 0x01000000 */ |
|
1640 | #define AFIO_MAPR_SWJ_CFG_NOJNTRST ((uint32_t)0x01000000) /*!< Full SWJ (JTAG-DP + SW-DP) but without JNTRST */ |
2416 | #define AFIO_MAPR_SWJ_CFG_NOJNTRST AFIO_MAPR_SWJ_CFG_NOJNTRST_Msk /*!< Full SWJ (JTAG-DP + SW-DP) but without JNTRST */ |
- | 2417 | #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Pos (25U) |
|
- | 2418 | #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Msk (0x1U << AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Pos) /*!< 0x02000000 */ |
|
1641 | #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE ((uint32_t)0x02000000) /*!< JTAG-DP Disabled and SW-DP Enabled */ |
2419 | #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Msk /*!< JTAG-DP Disabled and SW-DP Enabled */ |
- | 2420 | #define AFIO_MAPR_SWJ_CFG_DISABLE_Pos (26U) |
|
- | 2421 | #define AFIO_MAPR_SWJ_CFG_DISABLE_Msk (0x1U << AFIO_MAPR_SWJ_CFG_DISABLE_Pos) /*!< 0x04000000 */ |
|
1642 | #define AFIO_MAPR_SWJ_CFG_DISABLE ((uint32_t)0x04000000) /*!< JTAG-DP Disabled and SW-DP Disabled */ |
2422 | #define AFIO_MAPR_SWJ_CFG_DISABLE AFIO_MAPR_SWJ_CFG_DISABLE_Msk /*!< JTAG-DP Disabled and SW-DP Disabled */ |
1643 | 2423 | ||
1644 | 2424 | ||
1645 | /***************** Bit definition for AFIO_EXTICR1 register *****************/ |
2425 | /***************** Bit definition for AFIO_EXTICR1 register *****************/ |
- | 2426 | #define AFIO_EXTICR1_EXTI0_Pos (0U) |
|
- | 2427 | #define AFIO_EXTICR1_EXTI0_Msk (0xFU << AFIO_EXTICR1_EXTI0_Pos) /*!< 0x0000000F */ |
|
1646 | #define AFIO_EXTICR1_EXTI0 ((uint32_t)0x0000000F) /*!< EXTI 0 configuration */ |
2428 | #define AFIO_EXTICR1_EXTI0 AFIO_EXTICR1_EXTI0_Msk /*!< EXTI 0 configuration */ |
- | 2429 | #define AFIO_EXTICR1_EXTI1_Pos (4U) |
|
- | 2430 | #define AFIO_EXTICR1_EXTI1_Msk (0xFU << AFIO_EXTICR1_EXTI1_Pos) /*!< 0x000000F0 */ |
|
1647 | #define AFIO_EXTICR1_EXTI1 ((uint32_t)0x000000F0) /*!< EXTI 1 configuration */ |
2431 | #define AFIO_EXTICR1_EXTI1 AFIO_EXTICR1_EXTI1_Msk /*!< EXTI 1 configuration */ |
- | 2432 | #define AFIO_EXTICR1_EXTI2_Pos (8U) |
|
- | 2433 | #define AFIO_EXTICR1_EXTI2_Msk (0xFU << AFIO_EXTICR1_EXTI2_Pos) /*!< 0x00000F00 */ |
|
1648 | #define AFIO_EXTICR1_EXTI2 ((uint32_t)0x00000F00) /*!< EXTI 2 configuration */ |
2434 | #define AFIO_EXTICR1_EXTI2 AFIO_EXTICR1_EXTI2_Msk /*!< EXTI 2 configuration */ |
- | 2435 | #define AFIO_EXTICR1_EXTI3_Pos (12U) |
|
- | 2436 | #define AFIO_EXTICR1_EXTI3_Msk (0xFU << AFIO_EXTICR1_EXTI3_Pos) /*!< 0x0000F000 */ |
|
1649 | #define AFIO_EXTICR1_EXTI3 ((uint32_t)0x0000F000) /*!< EXTI 3 configuration */ |
2437 | #define AFIO_EXTICR1_EXTI3 AFIO_EXTICR1_EXTI3_Msk /*!< EXTI 3 configuration */ |
1650 | 2438 | ||
1651 | /*!< EXTI0 configuration */ |
2439 | /*!< EXTI0 configuration */ |
1652 | #define AFIO_EXTICR1_EXTI0_PA ((uint32_t)0x00000000) /*!< PA[0] pin */ |
2440 | #define AFIO_EXTICR1_EXTI0_PA ((uint32_t)0x00000000) /*!< PA[0] pin */ |
- | 2441 | #define AFIO_EXTICR1_EXTI0_PB_Pos (0U) |
|
- | 2442 | #define AFIO_EXTICR1_EXTI0_PB_Msk (0x1U << AFIO_EXTICR1_EXTI0_PB_Pos) /*!< 0x00000001 */ |
|
1653 | #define AFIO_EXTICR1_EXTI0_PB ((uint32_t)0x00000001) /*!< PB[0] pin */ |
2443 | #define AFIO_EXTICR1_EXTI0_PB AFIO_EXTICR1_EXTI0_PB_Msk /*!< PB[0] pin */ |
- | 2444 | #define AFIO_EXTICR1_EXTI0_PC_Pos (1U) |
|
- | 2445 | #define AFIO_EXTICR1_EXTI0_PC_Msk (0x1U << AFIO_EXTICR1_EXTI0_PC_Pos) /*!< 0x00000002 */ |
|
1654 | #define AFIO_EXTICR1_EXTI0_PC ((uint32_t)0x00000002) /*!< PC[0] pin */ |
2446 | #define AFIO_EXTICR1_EXTI0_PC AFIO_EXTICR1_EXTI0_PC_Msk /*!< PC[0] pin */ |
- | 2447 | #define AFIO_EXTICR1_EXTI0_PD_Pos (0U) |
|
- | 2448 | #define AFIO_EXTICR1_EXTI0_PD_Msk (0x3U << AFIO_EXTICR1_EXTI0_PD_Pos) /*!< 0x00000003 */ |
|
1655 | #define AFIO_EXTICR1_EXTI0_PD ((uint32_t)0x00000003) /*!< PD[0] pin */ |
2449 | #define AFIO_EXTICR1_EXTI0_PD AFIO_EXTICR1_EXTI0_PD_Msk /*!< PD[0] pin */ |
- | 2450 | #define AFIO_EXTICR1_EXTI0_PE_Pos (2U) |
|
- | 2451 | #define AFIO_EXTICR1_EXTI0_PE_Msk (0x1U << AFIO_EXTICR1_EXTI0_PE_Pos) /*!< 0x00000004 */ |
|
1656 | #define AFIO_EXTICR1_EXTI0_PE ((uint32_t)0x00000004) /*!< PE[0] pin */ |
2452 | #define AFIO_EXTICR1_EXTI0_PE AFIO_EXTICR1_EXTI0_PE_Msk /*!< PE[0] pin */ |
- | 2453 | #define AFIO_EXTICR1_EXTI0_PF_Pos (0U) |
|
- | 2454 | #define AFIO_EXTICR1_EXTI0_PF_Msk (0x5U << AFIO_EXTICR1_EXTI0_PF_Pos) /*!< 0x00000005 */ |
|
1657 | #define AFIO_EXTICR1_EXTI0_PF ((uint32_t)0x00000005) /*!< PF[0] pin */ |
2455 | #define AFIO_EXTICR1_EXTI0_PF AFIO_EXTICR1_EXTI0_PF_Msk /*!< PF[0] pin */ |
- | 2456 | #define AFIO_EXTICR1_EXTI0_PG_Pos (1U) |
|
- | 2457 | #define AFIO_EXTICR1_EXTI0_PG_Msk (0x3U << AFIO_EXTICR1_EXTI0_PG_Pos) /*!< 0x00000006 */ |
|
1658 | #define AFIO_EXTICR1_EXTI0_PG ((uint32_t)0x00000006) /*!< PG[0] pin */ |
2458 | #define AFIO_EXTICR1_EXTI0_PG AFIO_EXTICR1_EXTI0_PG_Msk /*!< PG[0] pin */ |
1659 | 2459 | ||
1660 | /*!< EXTI1 configuration */ |
2460 | /*!< EXTI1 configuration */ |
1661 | #define AFIO_EXTICR1_EXTI1_PA ((uint32_t)0x00000000) /*!< PA[1] pin */ |
2461 | #define AFIO_EXTICR1_EXTI1_PA ((uint32_t)0x00000000) /*!< PA[1] pin */ |
- | 2462 | #define AFIO_EXTICR1_EXTI1_PB_Pos (4U) |
|
- | 2463 | #define AFIO_EXTICR1_EXTI1_PB_Msk (0x1U << AFIO_EXTICR1_EXTI1_PB_Pos) /*!< 0x00000010 */ |
|
1662 | #define AFIO_EXTICR1_EXTI1_PB ((uint32_t)0x00000010) /*!< PB[1] pin */ |
2464 | #define AFIO_EXTICR1_EXTI1_PB AFIO_EXTICR1_EXTI1_PB_Msk /*!< PB[1] pin */ |
- | 2465 | #define AFIO_EXTICR1_EXTI1_PC_Pos (5U) |
|
- | 2466 | #define AFIO_EXTICR1_EXTI1_PC_Msk (0x1U << AFIO_EXTICR1_EXTI1_PC_Pos) /*!< 0x00000020 */ |
|
1663 | #define AFIO_EXTICR1_EXTI1_PC ((uint32_t)0x00000020) /*!< PC[1] pin */ |
2467 | #define AFIO_EXTICR1_EXTI1_PC AFIO_EXTICR1_EXTI1_PC_Msk /*!< PC[1] pin */ |
- | 2468 | #define AFIO_EXTICR1_EXTI1_PD_Pos (4U) |
|
- | 2469 | #define AFIO_EXTICR1_EXTI1_PD_Msk (0x3U << AFIO_EXTICR1_EXTI1_PD_Pos) /*!< 0x00000030 */ |
|
1664 | #define AFIO_EXTICR1_EXTI1_PD ((uint32_t)0x00000030) /*!< PD[1] pin */ |
2470 | #define AFIO_EXTICR1_EXTI1_PD AFIO_EXTICR1_EXTI1_PD_Msk /*!< PD[1] pin */ |
- | 2471 | #define AFIO_EXTICR1_EXTI1_PE_Pos (6U) |
|
- | 2472 | #define AFIO_EXTICR1_EXTI1_PE_Msk (0x1U << AFIO_EXTICR1_EXTI1_PE_Pos) /*!< 0x00000040 */ |
|
1665 | #define AFIO_EXTICR1_EXTI1_PE ((uint32_t)0x00000040) /*!< PE[1] pin */ |
2473 | #define AFIO_EXTICR1_EXTI1_PE AFIO_EXTICR1_EXTI1_PE_Msk /*!< PE[1] pin */ |
- | 2474 | #define AFIO_EXTICR1_EXTI1_PF_Pos (4U) |
|
- | 2475 | #define AFIO_EXTICR1_EXTI1_PF_Msk (0x5U << AFIO_EXTICR1_EXTI1_PF_Pos) /*!< 0x00000050 */ |
|
1666 | #define AFIO_EXTICR1_EXTI1_PF ((uint32_t)0x00000050) /*!< PF[1] pin */ |
2476 | #define AFIO_EXTICR1_EXTI1_PF AFIO_EXTICR1_EXTI1_PF_Msk /*!< PF[1] pin */ |
- | 2477 | #define AFIO_EXTICR1_EXTI1_PG_Pos (5U) |
|
- | 2478 | #define AFIO_EXTICR1_EXTI1_PG_Msk (0x3U << AFIO_EXTICR1_EXTI1_PG_Pos) /*!< 0x00000060 */ |
|
1667 | #define AFIO_EXTICR1_EXTI1_PG ((uint32_t)0x00000060) /*!< PG[1] pin */ |
2479 | #define AFIO_EXTICR1_EXTI1_PG AFIO_EXTICR1_EXTI1_PG_Msk /*!< PG[1] pin */ |
1668 | 2480 | ||
1669 | /*!< EXTI2 configuration */ |
2481 | /*!< EXTI2 configuration */ |
1670 | #define AFIO_EXTICR1_EXTI2_PA ((uint32_t)0x00000000) /*!< PA[2] pin */ |
2482 | #define AFIO_EXTICR1_EXTI2_PA ((uint32_t)0x00000000) /*!< PA[2] pin */ |
- | 2483 | #define AFIO_EXTICR1_EXTI2_PB_Pos (8U) |
|
- | 2484 | #define AFIO_EXTICR1_EXTI2_PB_Msk (0x1U << AFIO_EXTICR1_EXTI2_PB_Pos) /*!< 0x00000100 */ |
|
1671 | #define AFIO_EXTICR1_EXTI2_PB ((uint32_t)0x00000100) /*!< PB[2] pin */ |
2485 | #define AFIO_EXTICR1_EXTI2_PB AFIO_EXTICR1_EXTI2_PB_Msk /*!< PB[2] pin */ |
- | 2486 | #define AFIO_EXTICR1_EXTI2_PC_Pos (9U) |
|
- | 2487 | #define AFIO_EXTICR1_EXTI2_PC_Msk (0x1U << AFIO_EXTICR1_EXTI2_PC_Pos) /*!< 0x00000200 */ |
|
1672 | #define AFIO_EXTICR1_EXTI2_PC ((uint32_t)0x00000200) /*!< PC[2] pin */ |
2488 | #define AFIO_EXTICR1_EXTI2_PC AFIO_EXTICR1_EXTI2_PC_Msk /*!< PC[2] pin */ |
- | 2489 | #define AFIO_EXTICR1_EXTI2_PD_Pos (8U) |
|
- | 2490 | #define AFIO_EXTICR1_EXTI2_PD_Msk (0x3U << AFIO_EXTICR1_EXTI2_PD_Pos) /*!< 0x00000300 */ |
|
1673 | #define AFIO_EXTICR1_EXTI2_PD ((uint32_t)0x00000300) /*!< PD[2] pin */ |
2491 | #define AFIO_EXTICR1_EXTI2_PD AFIO_EXTICR1_EXTI2_PD_Msk /*!< PD[2] pin */ |
- | 2492 | #define AFIO_EXTICR1_EXTI2_PE_Pos (10U) |
|
- | 2493 | #define AFIO_EXTICR1_EXTI2_PE_Msk (0x1U << AFIO_EXTICR1_EXTI2_PE_Pos) /*!< 0x00000400 */ |
|
1674 | #define AFIO_EXTICR1_EXTI2_PE ((uint32_t)0x00000400) /*!< PE[2] pin */ |
2494 | #define AFIO_EXTICR1_EXTI2_PE AFIO_EXTICR1_EXTI2_PE_Msk /*!< PE[2] pin */ |
- | 2495 | #define AFIO_EXTICR1_EXTI2_PF_Pos (8U) |
|
- | 2496 | #define AFIO_EXTICR1_EXTI2_PF_Msk (0x5U << AFIO_EXTICR1_EXTI2_PF_Pos) /*!< 0x00000500 */ |
|
1675 | #define AFIO_EXTICR1_EXTI2_PF ((uint32_t)0x00000500) /*!< PF[2] pin */ |
2497 | #define AFIO_EXTICR1_EXTI2_PF AFIO_EXTICR1_EXTI2_PF_Msk /*!< PF[2] pin */ |
- | 2498 | #define AFIO_EXTICR1_EXTI2_PG_Pos (9U) |
|
- | 2499 | #define AFIO_EXTICR1_EXTI2_PG_Msk (0x3U << AFIO_EXTICR1_EXTI2_PG_Pos) /*!< 0x00000600 */ |
|
1676 | #define AFIO_EXTICR1_EXTI2_PG ((uint32_t)0x00000600) /*!< PG[2] pin */ |
2500 | #define AFIO_EXTICR1_EXTI2_PG AFIO_EXTICR1_EXTI2_PG_Msk /*!< PG[2] pin */ |
1677 | 2501 | ||
1678 | /*!< EXTI3 configuration */ |
2502 | /*!< EXTI3 configuration */ |
1679 | #define AFIO_EXTICR1_EXTI3_PA ((uint32_t)0x00000000) /*!< PA[3] pin */ |
2503 | #define AFIO_EXTICR1_EXTI3_PA ((uint32_t)0x00000000) /*!< PA[3] pin */ |
- | 2504 | #define AFIO_EXTICR1_EXTI3_PB_Pos (12U) |
|
- | 2505 | #define AFIO_EXTICR1_EXTI3_PB_Msk (0x1U << AFIO_EXTICR1_EXTI3_PB_Pos) /*!< 0x00001000 */ |
|
1680 | #define AFIO_EXTICR1_EXTI3_PB ((uint32_t)0x00001000) /*!< PB[3] pin */ |
2506 | #define AFIO_EXTICR1_EXTI3_PB AFIO_EXTICR1_EXTI3_PB_Msk /*!< PB[3] pin */ |
- | 2507 | #define AFIO_EXTICR1_EXTI3_PC_Pos (13U) |
|
- | 2508 | #define AFIO_EXTICR1_EXTI3_PC_Msk (0x1U << AFIO_EXTICR1_EXTI3_PC_Pos) /*!< 0x00002000 */ |
|
1681 | #define AFIO_EXTICR1_EXTI3_PC ((uint32_t)0x00002000) /*!< PC[3] pin */ |
2509 | #define AFIO_EXTICR1_EXTI3_PC AFIO_EXTICR1_EXTI3_PC_Msk /*!< PC[3] pin */ |
- | 2510 | #define AFIO_EXTICR1_EXTI3_PD_Pos (12U) |
|
- | 2511 | #define AFIO_EXTICR1_EXTI3_PD_Msk (0x3U << AFIO_EXTICR1_EXTI3_PD_Pos) /*!< 0x00003000 */ |
|
1682 | #define AFIO_EXTICR1_EXTI3_PD ((uint32_t)0x00003000) /*!< PD[3] pin */ |
2512 | #define AFIO_EXTICR1_EXTI3_PD AFIO_EXTICR1_EXTI3_PD_Msk /*!< PD[3] pin */ |
- | 2513 | #define AFIO_EXTICR1_EXTI3_PE_Pos (14U) |
|
- | 2514 | #define AFIO_EXTICR1_EXTI3_PE_Msk (0x1U << AFIO_EXTICR1_EXTI3_PE_Pos) /*!< 0x00004000 */ |
|
1683 | #define AFIO_EXTICR1_EXTI3_PE ((uint32_t)0x00004000) /*!< PE[3] pin */ |
2515 | #define AFIO_EXTICR1_EXTI3_PE AFIO_EXTICR1_EXTI3_PE_Msk /*!< PE[3] pin */ |
- | 2516 | #define AFIO_EXTICR1_EXTI3_PF_Pos (12U) |
|
- | 2517 | #define AFIO_EXTICR1_EXTI3_PF_Msk (0x5U << AFIO_EXTICR1_EXTI3_PF_Pos) /*!< 0x00005000 */ |
|
1684 | #define AFIO_EXTICR1_EXTI3_PF ((uint32_t)0x00005000) /*!< PF[3] pin */ |
2518 | #define AFIO_EXTICR1_EXTI3_PF AFIO_EXTICR1_EXTI3_PF_Msk /*!< PF[3] pin */ |
- | 2519 | #define AFIO_EXTICR1_EXTI3_PG_Pos (13U) |
|
- | 2520 | #define AFIO_EXTICR1_EXTI3_PG_Msk (0x3U << AFIO_EXTICR1_EXTI3_PG_Pos) /*!< 0x00006000 */ |
|
1685 | #define AFIO_EXTICR1_EXTI3_PG ((uint32_t)0x00006000) /*!< PG[3] pin */ |
2521 | #define AFIO_EXTICR1_EXTI3_PG AFIO_EXTICR1_EXTI3_PG_Msk /*!< PG[3] pin */ |
1686 | 2522 | ||
1687 | /***************** Bit definition for AFIO_EXTICR2 register *****************/ |
2523 | /***************** Bit definition for AFIO_EXTICR2 register *****************/ |
- | 2524 | #define AFIO_EXTICR2_EXTI4_Pos (0U) |
|
- | 2525 | #define AFIO_EXTICR2_EXTI4_Msk (0xFU << AFIO_EXTICR2_EXTI4_Pos) /*!< 0x0000000F */ |
|
1688 | #define AFIO_EXTICR2_EXTI4 ((uint32_t)0x0000000F) /*!< EXTI 4 configuration */ |
2526 | #define AFIO_EXTICR2_EXTI4 AFIO_EXTICR2_EXTI4_Msk /*!< EXTI 4 configuration */ |
- | 2527 | #define AFIO_EXTICR2_EXTI5_Pos (4U) |
|
- | 2528 | #define AFIO_EXTICR2_EXTI5_Msk (0xFU << AFIO_EXTICR2_EXTI5_Pos) /*!< 0x000000F0 */ |
|
1689 | #define AFIO_EXTICR2_EXTI5 ((uint32_t)0x000000F0) /*!< EXTI 5 configuration */ |
2529 | #define AFIO_EXTICR2_EXTI5 AFIO_EXTICR2_EXTI5_Msk /*!< EXTI 5 configuration */ |
- | 2530 | #define AFIO_EXTICR2_EXTI6_Pos (8U) |
|
- | 2531 | #define AFIO_EXTICR2_EXTI6_Msk (0xFU << AFIO_EXTICR2_EXTI6_Pos) /*!< 0x00000F00 */ |
|
1690 | #define AFIO_EXTICR2_EXTI6 ((uint32_t)0x00000F00) /*!< EXTI 6 configuration */ |
2532 | #define AFIO_EXTICR2_EXTI6 AFIO_EXTICR2_EXTI6_Msk /*!< EXTI 6 configuration */ |
- | 2533 | #define AFIO_EXTICR2_EXTI7_Pos (12U) |
|
- | 2534 | #define AFIO_EXTICR2_EXTI7_Msk (0xFU << AFIO_EXTICR2_EXTI7_Pos) /*!< 0x0000F000 */ |
|
1691 | #define AFIO_EXTICR2_EXTI7 ((uint32_t)0x0000F000) /*!< EXTI 7 configuration */ |
2535 | #define AFIO_EXTICR2_EXTI7 AFIO_EXTICR2_EXTI7_Msk /*!< EXTI 7 configuration */ |
1692 | 2536 | ||
1693 | /*!< EXTI4 configuration */ |
2537 | /*!< EXTI4 configuration */ |
1694 | #define AFIO_EXTICR2_EXTI4_PA ((uint32_t)0x00000000) /*!< PA[4] pin */ |
2538 | #define AFIO_EXTICR2_EXTI4_PA ((uint32_t)0x00000000) /*!< PA[4] pin */ |
- | 2539 | #define AFIO_EXTICR2_EXTI4_PB_Pos (0U) |
|
- | 2540 | #define AFIO_EXTICR2_EXTI4_PB_Msk (0x1U << AFIO_EXTICR2_EXTI4_PB_Pos) /*!< 0x00000001 */ |
|
1695 | #define AFIO_EXTICR2_EXTI4_PB ((uint32_t)0x00000001) /*!< PB[4] pin */ |
2541 | #define AFIO_EXTICR2_EXTI4_PB AFIO_EXTICR2_EXTI4_PB_Msk /*!< PB[4] pin */ |
- | 2542 | #define AFIO_EXTICR2_EXTI4_PC_Pos (1U) |
|
- | 2543 | #define AFIO_EXTICR2_EXTI4_PC_Msk (0x1U << AFIO_EXTICR2_EXTI4_PC_Pos) /*!< 0x00000002 */ |
|
1696 | #define AFIO_EXTICR2_EXTI4_PC ((uint32_t)0x00000002) /*!< PC[4] pin */ |
2544 | #define AFIO_EXTICR2_EXTI4_PC AFIO_EXTICR2_EXTI4_PC_Msk /*!< PC[4] pin */ |
- | 2545 | #define AFIO_EXTICR2_EXTI4_PD_Pos (0U) |
|
- | 2546 | #define AFIO_EXTICR2_EXTI4_PD_Msk (0x3U << AFIO_EXTICR2_EXTI4_PD_Pos) /*!< 0x00000003 */ |
|
1697 | #define AFIO_EXTICR2_EXTI4_PD ((uint32_t)0x00000003) /*!< PD[4] pin */ |
2547 | #define AFIO_EXTICR2_EXTI4_PD AFIO_EXTICR2_EXTI4_PD_Msk /*!< PD[4] pin */ |
- | 2548 | #define AFIO_EXTICR2_EXTI4_PE_Pos (2U) |
|
- | 2549 | #define AFIO_EXTICR2_EXTI4_PE_Msk (0x1U << AFIO_EXTICR2_EXTI4_PE_Pos) /*!< 0x00000004 */ |
|
1698 | #define AFIO_EXTICR2_EXTI4_PE ((uint32_t)0x00000004) /*!< PE[4] pin */ |
2550 | #define AFIO_EXTICR2_EXTI4_PE AFIO_EXTICR2_EXTI4_PE_Msk /*!< PE[4] pin */ |
- | 2551 | #define AFIO_EXTICR2_EXTI4_PF_Pos (0U) |
|
- | 2552 | #define AFIO_EXTICR2_EXTI4_PF_Msk (0x5U << AFIO_EXTICR2_EXTI4_PF_Pos) /*!< 0x00000005 */ |
|
1699 | #define AFIO_EXTICR2_EXTI4_PF ((uint32_t)0x00000005) /*!< PF[4] pin */ |
2553 | #define AFIO_EXTICR2_EXTI4_PF AFIO_EXTICR2_EXTI4_PF_Msk /*!< PF[4] pin */ |
- | 2554 | #define AFIO_EXTICR2_EXTI4_PG_Pos (1U) |
|
- | 2555 | #define AFIO_EXTICR2_EXTI4_PG_Msk (0x3U << AFIO_EXTICR2_EXTI4_PG_Pos) /*!< 0x00000006 */ |
|
1700 | #define AFIO_EXTICR2_EXTI4_PG ((uint32_t)0x00000006) /*!< PG[4] pin */ |
2556 | #define AFIO_EXTICR2_EXTI4_PG AFIO_EXTICR2_EXTI4_PG_Msk /*!< PG[4] pin */ |
1701 | 2557 | ||
1702 | /* EXTI5 configuration */ |
2558 | /* EXTI5 configuration */ |
1703 | #define AFIO_EXTICR2_EXTI5_PA ((uint32_t)0x00000000) /*!< PA[5] pin */ |
2559 | #define AFIO_EXTICR2_EXTI5_PA ((uint32_t)0x00000000) /*!< PA[5] pin */ |
- | 2560 | #define AFIO_EXTICR2_EXTI5_PB_Pos (4U) |
|
- | 2561 | #define AFIO_EXTICR2_EXTI5_PB_Msk (0x1U << AFIO_EXTICR2_EXTI5_PB_Pos) /*!< 0x00000010 */ |
|
1704 | #define AFIO_EXTICR2_EXTI5_PB ((uint32_t)0x00000010) /*!< PB[5] pin */ |
2562 | #define AFIO_EXTICR2_EXTI5_PB AFIO_EXTICR2_EXTI5_PB_Msk /*!< PB[5] pin */ |
- | 2563 | #define AFIO_EXTICR2_EXTI5_PC_Pos (5U) |
|
- | 2564 | #define AFIO_EXTICR2_EXTI5_PC_Msk (0x1U << AFIO_EXTICR2_EXTI5_PC_Pos) /*!< 0x00000020 */ |
|
1705 | #define AFIO_EXTICR2_EXTI5_PC ((uint32_t)0x00000020) /*!< PC[5] pin */ |
2565 | #define AFIO_EXTICR2_EXTI5_PC AFIO_EXTICR2_EXTI5_PC_Msk /*!< PC[5] pin */ |
- | 2566 | #define AFIO_EXTICR2_EXTI5_PD_Pos (4U) |
|
- | 2567 | #define AFIO_EXTICR2_EXTI5_PD_Msk (0x3U << AFIO_EXTICR2_EXTI5_PD_Pos) /*!< 0x00000030 */ |
|
1706 | #define AFIO_EXTICR2_EXTI5_PD ((uint32_t)0x00000030) /*!< PD[5] pin */ |
2568 | #define AFIO_EXTICR2_EXTI5_PD AFIO_EXTICR2_EXTI5_PD_Msk /*!< PD[5] pin */ |
- | 2569 | #define AFIO_EXTICR2_EXTI5_PE_Pos (6U) |
|
- | 2570 | #define AFIO_EXTICR2_EXTI5_PE_Msk (0x1U << AFIO_EXTICR2_EXTI5_PE_Pos) /*!< 0x00000040 */ |
|
1707 | #define AFIO_EXTICR2_EXTI5_PE ((uint32_t)0x00000040) /*!< PE[5] pin */ |
2571 | #define AFIO_EXTICR2_EXTI5_PE AFIO_EXTICR2_EXTI5_PE_Msk /*!< PE[5] pin */ |
- | 2572 | #define AFIO_EXTICR2_EXTI5_PF_Pos (4U) |
|
- | 2573 | #define AFIO_EXTICR2_EXTI5_PF_Msk (0x5U << AFIO_EXTICR2_EXTI5_PF_Pos) /*!< 0x00000050 */ |
|
1708 | #define AFIO_EXTICR2_EXTI5_PF ((uint32_t)0x00000050) /*!< PF[5] pin */ |
2574 | #define AFIO_EXTICR2_EXTI5_PF AFIO_EXTICR2_EXTI5_PF_Msk /*!< PF[5] pin */ |
- | 2575 | #define AFIO_EXTICR2_EXTI5_PG_Pos (5U) |
|
- | 2576 | #define AFIO_EXTICR2_EXTI5_PG_Msk (0x3U << AFIO_EXTICR2_EXTI5_PG_Pos) /*!< 0x00000060 */ |
|
1709 | #define AFIO_EXTICR2_EXTI5_PG ((uint32_t)0x00000060) /*!< PG[5] pin */ |
2577 | #define AFIO_EXTICR2_EXTI5_PG AFIO_EXTICR2_EXTI5_PG_Msk /*!< PG[5] pin */ |
1710 | 2578 | ||
1711 | /*!< EXTI6 configuration */ |
2579 | /*!< EXTI6 configuration */ |
1712 | #define AFIO_EXTICR2_EXTI6_PA ((uint32_t)0x00000000) /*!< PA[6] pin */ |
2580 | #define AFIO_EXTICR2_EXTI6_PA ((uint32_t)0x00000000) /*!< PA[6] pin */ |
- | 2581 | #define AFIO_EXTICR2_EXTI6_PB_Pos (8U) |
|
- | 2582 | #define AFIO_EXTICR2_EXTI6_PB_Msk (0x1U << AFIO_EXTICR2_EXTI6_PB_Pos) /*!< 0x00000100 */ |
|
1713 | #define AFIO_EXTICR2_EXTI6_PB ((uint32_t)0x00000100) /*!< PB[6] pin */ |
2583 | #define AFIO_EXTICR2_EXTI6_PB AFIO_EXTICR2_EXTI6_PB_Msk /*!< PB[6] pin */ |
- | 2584 | #define AFIO_EXTICR2_EXTI6_PC_Pos (9U) |
|
- | 2585 | #define AFIO_EXTICR2_EXTI6_PC_Msk (0x1U << AFIO_EXTICR2_EXTI6_PC_Pos) /*!< 0x00000200 */ |
|
1714 | #define AFIO_EXTICR2_EXTI6_PC ((uint32_t)0x00000200) /*!< PC[6] pin */ |
2586 | #define AFIO_EXTICR2_EXTI6_PC AFIO_EXTICR2_EXTI6_PC_Msk /*!< PC[6] pin */ |
- | 2587 | #define AFIO_EXTICR2_EXTI6_PD_Pos (8U) |
|
- | 2588 | #define AFIO_EXTICR2_EXTI6_PD_Msk (0x3U << AFIO_EXTICR2_EXTI6_PD_Pos) /*!< 0x00000300 */ |
|
1715 | #define AFIO_EXTICR2_EXTI6_PD ((uint32_t)0x00000300) /*!< PD[6] pin */ |
2589 | #define AFIO_EXTICR2_EXTI6_PD AFIO_EXTICR2_EXTI6_PD_Msk /*!< PD[6] pin */ |
- | 2590 | #define AFIO_EXTICR2_EXTI6_PE_Pos (10U) |
|
- | 2591 | #define AFIO_EXTICR2_EXTI6_PE_Msk (0x1U << AFIO_EXTICR2_EXTI6_PE_Pos) /*!< 0x00000400 */ |
|
1716 | #define AFIO_EXTICR2_EXTI6_PE ((uint32_t)0x00000400) /*!< PE[6] pin */ |
2592 | #define AFIO_EXTICR2_EXTI6_PE AFIO_EXTICR2_EXTI6_PE_Msk /*!< PE[6] pin */ |
- | 2593 | #define AFIO_EXTICR2_EXTI6_PF_Pos (8U) |
|
- | 2594 | #define AFIO_EXTICR2_EXTI6_PF_Msk (0x5U << AFIO_EXTICR2_EXTI6_PF_Pos) /*!< 0x00000500 */ |
|
1717 | #define AFIO_EXTICR2_EXTI6_PF ((uint32_t)0x00000500) /*!< PF[6] pin */ |
2595 | #define AFIO_EXTICR2_EXTI6_PF AFIO_EXTICR2_EXTI6_PF_Msk /*!< PF[6] pin */ |
- | 2596 | #define AFIO_EXTICR2_EXTI6_PG_Pos (9U) |
|
- | 2597 | #define AFIO_EXTICR2_EXTI6_PG_Msk (0x3U << AFIO_EXTICR2_EXTI6_PG_Pos) /*!< 0x00000600 */ |
|
1718 | #define AFIO_EXTICR2_EXTI6_PG ((uint32_t)0x00000600) /*!< PG[6] pin */ |
2598 | #define AFIO_EXTICR2_EXTI6_PG AFIO_EXTICR2_EXTI6_PG_Msk /*!< PG[6] pin */ |
1719 | 2599 | ||
1720 | /*!< EXTI7 configuration */ |
2600 | /*!< EXTI7 configuration */ |
1721 | #define AFIO_EXTICR2_EXTI7_PA ((uint32_t)0x00000000) /*!< PA[7] pin */ |
2601 | #define AFIO_EXTICR2_EXTI7_PA ((uint32_t)0x00000000) /*!< PA[7] pin */ |
- | 2602 | #define AFIO_EXTICR2_EXTI7_PB_Pos (12U) |
|
- | 2603 | #define AFIO_EXTICR2_EXTI7_PB_Msk (0x1U << AFIO_EXTICR2_EXTI7_PB_Pos) /*!< 0x00001000 */ |
|
1722 | #define AFIO_EXTICR2_EXTI7_PB ((uint32_t)0x00001000) /*!< PB[7] pin */ |
2604 | #define AFIO_EXTICR2_EXTI7_PB AFIO_EXTICR2_EXTI7_PB_Msk /*!< PB[7] pin */ |
- | 2605 | #define AFIO_EXTICR2_EXTI7_PC_Pos (13U) |
|
- | 2606 | #define AFIO_EXTICR2_EXTI7_PC_Msk (0x1U << AFIO_EXTICR2_EXTI7_PC_Pos) /*!< 0x00002000 */ |
|
1723 | #define AFIO_EXTICR2_EXTI7_PC ((uint32_t)0x00002000) /*!< PC[7] pin */ |
2607 | #define AFIO_EXTICR2_EXTI7_PC AFIO_EXTICR2_EXTI7_PC_Msk /*!< PC[7] pin */ |
- | 2608 | #define AFIO_EXTICR2_EXTI7_PD_Pos (12U) |
|
- | 2609 | #define AFIO_EXTICR2_EXTI7_PD_Msk (0x3U << AFIO_EXTICR2_EXTI7_PD_Pos) /*!< 0x00003000 */ |
|
1724 | #define AFIO_EXTICR2_EXTI7_PD ((uint32_t)0x00003000) /*!< PD[7] pin */ |
2610 | #define AFIO_EXTICR2_EXTI7_PD AFIO_EXTICR2_EXTI7_PD_Msk /*!< PD[7] pin */ |
- | 2611 | #define AFIO_EXTICR2_EXTI7_PE_Pos (14U) |
|
- | 2612 | #define AFIO_EXTICR2_EXTI7_PE_Msk (0x1U << AFIO_EXTICR2_EXTI7_PE_Pos) /*!< 0x00004000 */ |
|
1725 | #define AFIO_EXTICR2_EXTI7_PE ((uint32_t)0x00004000) /*!< PE[7] pin */ |
2613 | #define AFIO_EXTICR2_EXTI7_PE AFIO_EXTICR2_EXTI7_PE_Msk /*!< PE[7] pin */ |
- | 2614 | #define AFIO_EXTICR2_EXTI7_PF_Pos (12U) |
|
- | 2615 | #define AFIO_EXTICR2_EXTI7_PF_Msk (0x5U << AFIO_EXTICR2_EXTI7_PF_Pos) /*!< 0x00005000 */ |
|
1726 | #define AFIO_EXTICR2_EXTI7_PF ((uint32_t)0x00005000) /*!< PF[7] pin */ |
2616 | #define AFIO_EXTICR2_EXTI7_PF AFIO_EXTICR2_EXTI7_PF_Msk /*!< PF[7] pin */ |
- | 2617 | #define AFIO_EXTICR2_EXTI7_PG_Pos (13U) |
|
- | 2618 | #define AFIO_EXTICR2_EXTI7_PG_Msk (0x3U << AFIO_EXTICR2_EXTI7_PG_Pos) /*!< 0x00006000 */ |
|
1727 | #define AFIO_EXTICR2_EXTI7_PG ((uint32_t)0x00006000) /*!< PG[7] pin */ |
2619 | #define AFIO_EXTICR2_EXTI7_PG AFIO_EXTICR2_EXTI7_PG_Msk /*!< PG[7] pin */ |
1728 | 2620 | ||
1729 | /***************** Bit definition for AFIO_EXTICR3 register *****************/ |
2621 | /***************** Bit definition for AFIO_EXTICR3 register *****************/ |
- | 2622 | #define AFIO_EXTICR3_EXTI8_Pos (0U) |
|
- | 2623 | #define AFIO_EXTICR3_EXTI8_Msk (0xFU << AFIO_EXTICR3_EXTI8_Pos) /*!< 0x0000000F */ |
|
1730 | #define AFIO_EXTICR3_EXTI8 ((uint32_t)0x0000000F) /*!< EXTI 8 configuration */ |
2624 | #define AFIO_EXTICR3_EXTI8 AFIO_EXTICR3_EXTI8_Msk /*!< EXTI 8 configuration */ |
- | 2625 | #define AFIO_EXTICR3_EXTI9_Pos (4U) |
|
- | 2626 | #define AFIO_EXTICR3_EXTI9_Msk (0xFU << AFIO_EXTICR3_EXTI9_Pos) /*!< 0x000000F0 */ |
|
1731 | #define AFIO_EXTICR3_EXTI9 ((uint32_t)0x000000F0) /*!< EXTI 9 configuration */ |
2627 | #define AFIO_EXTICR3_EXTI9 AFIO_EXTICR3_EXTI9_Msk /*!< EXTI 9 configuration */ |
- | 2628 | #define AFIO_EXTICR3_EXTI10_Pos (8U) |
|
- | 2629 | #define AFIO_EXTICR3_EXTI10_Msk (0xFU << AFIO_EXTICR3_EXTI10_Pos) /*!< 0x00000F00 */ |
|
1732 | #define AFIO_EXTICR3_EXTI10 ((uint32_t)0x00000F00) /*!< EXTI 10 configuration */ |
2630 | #define AFIO_EXTICR3_EXTI10 AFIO_EXTICR3_EXTI10_Msk /*!< EXTI 10 configuration */ |
- | 2631 | #define AFIO_EXTICR3_EXTI11_Pos (12U) |
|
- | 2632 | #define AFIO_EXTICR3_EXTI11_Msk (0xFU << AFIO_EXTICR3_EXTI11_Pos) /*!< 0x0000F000 */ |
|
1733 | #define AFIO_EXTICR3_EXTI11 ((uint32_t)0x0000F000) /*!< EXTI 11 configuration */ |
2633 | #define AFIO_EXTICR3_EXTI11 AFIO_EXTICR3_EXTI11_Msk /*!< EXTI 11 configuration */ |
1734 | 2634 | ||
1735 | /*!< EXTI8 configuration */ |
2635 | /*!< EXTI8 configuration */ |
1736 | #define AFIO_EXTICR3_EXTI8_PA ((uint32_t)0x00000000) /*!< PA[8] pin */ |
2636 | #define AFIO_EXTICR3_EXTI8_PA ((uint32_t)0x00000000) /*!< PA[8] pin */ |
- | 2637 | #define AFIO_EXTICR3_EXTI8_PB_Pos (0U) |
|
- | 2638 | #define AFIO_EXTICR3_EXTI8_PB_Msk (0x1U << AFIO_EXTICR3_EXTI8_PB_Pos) /*!< 0x00000001 */ |
|
1737 | #define AFIO_EXTICR3_EXTI8_PB ((uint32_t)0x00000001) /*!< PB[8] pin */ |
2639 | #define AFIO_EXTICR3_EXTI8_PB AFIO_EXTICR3_EXTI8_PB_Msk /*!< PB[8] pin */ |
- | 2640 | #define AFIO_EXTICR3_EXTI8_PC_Pos (1U) |
|
- | 2641 | #define AFIO_EXTICR3_EXTI8_PC_Msk (0x1U << AFIO_EXTICR3_EXTI8_PC_Pos) /*!< 0x00000002 */ |
|
1738 | #define AFIO_EXTICR3_EXTI8_PC ((uint32_t)0x00000002) /*!< PC[8] pin */ |
2642 | #define AFIO_EXTICR3_EXTI8_PC AFIO_EXTICR3_EXTI8_PC_Msk /*!< PC[8] pin */ |
- | 2643 | #define AFIO_EXTICR3_EXTI8_PD_Pos (0U) |
|
- | 2644 | #define AFIO_EXTICR3_EXTI8_PD_Msk (0x3U << AFIO_EXTICR3_EXTI8_PD_Pos) /*!< 0x00000003 */ |
|
1739 | #define AFIO_EXTICR3_EXTI8_PD ((uint32_t)0x00000003) /*!< PD[8] pin */ |
2645 | #define AFIO_EXTICR3_EXTI8_PD AFIO_EXTICR3_EXTI8_PD_Msk /*!< PD[8] pin */ |
- | 2646 | #define AFIO_EXTICR3_EXTI8_PE_Pos (2U) |
|
- | 2647 | #define AFIO_EXTICR3_EXTI8_PE_Msk (0x1U << AFIO_EXTICR3_EXTI8_PE_Pos) /*!< 0x00000004 */ |
|
1740 | #define AFIO_EXTICR3_EXTI8_PE ((uint32_t)0x00000004) /*!< PE[8] pin */ |
2648 | #define AFIO_EXTICR3_EXTI8_PE AFIO_EXTICR3_EXTI8_PE_Msk /*!< PE[8] pin */ |
- | 2649 | #define AFIO_EXTICR3_EXTI8_PF_Pos (0U) |
|
- | 2650 | #define AFIO_EXTICR3_EXTI8_PF_Msk (0x5U << AFIO_EXTICR3_EXTI8_PF_Pos) /*!< 0x00000005 */ |
|
1741 | #define AFIO_EXTICR3_EXTI8_PF ((uint32_t)0x00000005) /*!< PF[8] pin */ |
2651 | #define AFIO_EXTICR3_EXTI8_PF AFIO_EXTICR3_EXTI8_PF_Msk /*!< PF[8] pin */ |
- | 2652 | #define AFIO_EXTICR3_EXTI8_PG_Pos (1U) |
|
- | 2653 | #define AFIO_EXTICR3_EXTI8_PG_Msk (0x3U << AFIO_EXTICR3_EXTI8_PG_Pos) /*!< 0x00000006 */ |
|
1742 | #define AFIO_EXTICR3_EXTI8_PG ((uint32_t)0x00000006) /*!< PG[8] pin */ |
2654 | #define AFIO_EXTICR3_EXTI8_PG AFIO_EXTICR3_EXTI8_PG_Msk /*!< PG[8] pin */ |
1743 | 2655 | ||
1744 | /*!< EXTI9 configuration */ |
2656 | /*!< EXTI9 configuration */ |
1745 | #define AFIO_EXTICR3_EXTI9_PA ((uint32_t)0x00000000) /*!< PA[9] pin */ |
2657 | #define AFIO_EXTICR3_EXTI9_PA ((uint32_t)0x00000000) /*!< PA[9] pin */ |
- | 2658 | #define AFIO_EXTICR3_EXTI9_PB_Pos (4U) |
|
- | 2659 | #define AFIO_EXTICR3_EXTI9_PB_Msk (0x1U << AFIO_EXTICR3_EXTI9_PB_Pos) /*!< 0x00000010 */ |
|
1746 | #define AFIO_EXTICR3_EXTI9_PB ((uint32_t)0x00000010) /*!< PB[9] pin */ |
2660 | #define AFIO_EXTICR3_EXTI9_PB AFIO_EXTICR3_EXTI9_PB_Msk /*!< PB[9] pin */ |
- | 2661 | #define AFIO_EXTICR3_EXTI9_PC_Pos (5U) |
|
- | 2662 | #define AFIO_EXTICR3_EXTI9_PC_Msk (0x1U << AFIO_EXTICR3_EXTI9_PC_Pos) /*!< 0x00000020 */ |
|
1747 | #define AFIO_EXTICR3_EXTI9_PC ((uint32_t)0x00000020) /*!< PC[9] pin */ |
2663 | #define AFIO_EXTICR3_EXTI9_PC AFIO_EXTICR3_EXTI9_PC_Msk /*!< PC[9] pin */ |
- | 2664 | #define AFIO_EXTICR3_EXTI9_PD_Pos (4U) |
|
- | 2665 | #define AFIO_EXTICR3_EXTI9_PD_Msk (0x3U << AFIO_EXTICR3_EXTI9_PD_Pos) /*!< 0x00000030 */ |
|
1748 | #define AFIO_EXTICR3_EXTI9_PD ((uint32_t)0x00000030) /*!< PD[9] pin */ |
2666 | #define AFIO_EXTICR3_EXTI9_PD AFIO_EXTICR3_EXTI9_PD_Msk /*!< PD[9] pin */ |
- | 2667 | #define AFIO_EXTICR3_EXTI9_PE_Pos (6U) |
|
- | 2668 | #define AFIO_EXTICR3_EXTI9_PE_Msk (0x1U << AFIO_EXTICR3_EXTI9_PE_Pos) /*!< 0x00000040 */ |
|
1749 | #define AFIO_EXTICR3_EXTI9_PE ((uint32_t)0x00000040) /*!< PE[9] pin */ |
2669 | #define AFIO_EXTICR3_EXTI9_PE AFIO_EXTICR3_EXTI9_PE_Msk /*!< PE[9] pin */ |
- | 2670 | #define AFIO_EXTICR3_EXTI9_PF_Pos (4U) |
|
- | 2671 | #define AFIO_EXTICR3_EXTI9_PF_Msk (0x5U << AFIO_EXTICR3_EXTI9_PF_Pos) /*!< 0x00000050 */ |
|
1750 | #define AFIO_EXTICR3_EXTI9_PF ((uint32_t)0x00000050) /*!< PF[9] pin */ |
2672 | #define AFIO_EXTICR3_EXTI9_PF AFIO_EXTICR3_EXTI9_PF_Msk /*!< PF[9] pin */ |
- | 2673 | #define AFIO_EXTICR3_EXTI9_PG_Pos (5U) |
|
- | 2674 | #define AFIO_EXTICR3_EXTI9_PG_Msk (0x3U << AFIO_EXTICR3_EXTI9_PG_Pos) /*!< 0x00000060 */ |
|
1751 | #define AFIO_EXTICR3_EXTI9_PG ((uint32_t)0x00000060) /*!< PG[9] pin */ |
2675 | #define AFIO_EXTICR3_EXTI9_PG AFIO_EXTICR3_EXTI9_PG_Msk /*!< PG[9] pin */ |
1752 | 2676 | ||
1753 | /*!< EXTI10 configuration */ |
2677 | /*!< EXTI10 configuration */ |
1754 | #define AFIO_EXTICR3_EXTI10_PA ((uint32_t)0x00000000) /*!< PA[10] pin */ |
2678 | #define AFIO_EXTICR3_EXTI10_PA ((uint32_t)0x00000000) /*!< PA[10] pin */ |
- | 2679 | #define AFIO_EXTICR3_EXTI10_PB_Pos (8U) |
|
- | 2680 | #define AFIO_EXTICR3_EXTI10_PB_Msk (0x1U << AFIO_EXTICR3_EXTI10_PB_Pos) /*!< 0x00000100 */ |
|
1755 | #define AFIO_EXTICR3_EXTI10_PB ((uint32_t)0x00000100) /*!< PB[10] pin */ |
2681 | #define AFIO_EXTICR3_EXTI10_PB AFIO_EXTICR3_EXTI10_PB_Msk /*!< PB[10] pin */ |
- | 2682 | #define AFIO_EXTICR3_EXTI10_PC_Pos (9U) |
|
- | 2683 | #define AFIO_EXTICR3_EXTI10_PC_Msk (0x1U << AFIO_EXTICR3_EXTI10_PC_Pos) /*!< 0x00000200 */ |
|
1756 | #define AFIO_EXTICR3_EXTI10_PC ((uint32_t)0x00000200) /*!< PC[10] pin */ |
2684 | #define AFIO_EXTICR3_EXTI10_PC AFIO_EXTICR3_EXTI10_PC_Msk /*!< PC[10] pin */ |
- | 2685 | #define AFIO_EXTICR3_EXTI10_PD_Pos (8U) |
|
- | 2686 | #define AFIO_EXTICR3_EXTI10_PD_Msk (0x3U << AFIO_EXTICR3_EXTI10_PD_Pos) /*!< 0x00000300 */ |
|
1757 | #define AFIO_EXTICR3_EXTI10_PD ((uint32_t)0x00000300) /*!< PD[10] pin */ |
2687 | #define AFIO_EXTICR3_EXTI10_PD AFIO_EXTICR3_EXTI10_PD_Msk /*!< PD[10] pin */ |
- | 2688 | #define AFIO_EXTICR3_EXTI10_PE_Pos (10U) |
|
- | 2689 | #define AFIO_EXTICR3_EXTI10_PE_Msk (0x1U << AFIO_EXTICR3_EXTI10_PE_Pos) /*!< 0x00000400 */ |
|
1758 | #define AFIO_EXTICR3_EXTI10_PE ((uint32_t)0x00000400) /*!< PE[10] pin */ |
2690 | #define AFIO_EXTICR3_EXTI10_PE AFIO_EXTICR3_EXTI10_PE_Msk /*!< PE[10] pin */ |
- | 2691 | #define AFIO_EXTICR3_EXTI10_PF_Pos (8U) |
|
- | 2692 | #define AFIO_EXTICR3_EXTI10_PF_Msk (0x5U << AFIO_EXTICR3_EXTI10_PF_Pos) /*!< 0x00000500 */ |
|
1759 | #define AFIO_EXTICR3_EXTI10_PF ((uint32_t)0x00000500) /*!< PF[10] pin */ |
2693 | #define AFIO_EXTICR3_EXTI10_PF AFIO_EXTICR3_EXTI10_PF_Msk /*!< PF[10] pin */ |
- | 2694 | #define AFIO_EXTICR3_EXTI10_PG_Pos (9U) |
|
- | 2695 | #define AFIO_EXTICR3_EXTI10_PG_Msk (0x3U << AFIO_EXTICR3_EXTI10_PG_Pos) /*!< 0x00000600 */ |
|
1760 | #define AFIO_EXTICR3_EXTI10_PG ((uint32_t)0x00000600) /*!< PG[10] pin */ |
2696 | #define AFIO_EXTICR3_EXTI10_PG AFIO_EXTICR3_EXTI10_PG_Msk /*!< PG[10] pin */ |
1761 | 2697 | ||
1762 | /*!< EXTI11 configuration */ |
2698 | /*!< EXTI11 configuration */ |
1763 | #define AFIO_EXTICR3_EXTI11_PA ((uint32_t)0x00000000) /*!< PA[11] pin */ |
2699 | #define AFIO_EXTICR3_EXTI11_PA ((uint32_t)0x00000000) /*!< PA[11] pin */ |
- | 2700 | #define AFIO_EXTICR3_EXTI11_PB_Pos (12U) |
|
- | 2701 | #define AFIO_EXTICR3_EXTI11_PB_Msk (0x1U << AFIO_EXTICR3_EXTI11_PB_Pos) /*!< 0x00001000 */ |
|
1764 | #define AFIO_EXTICR3_EXTI11_PB ((uint32_t)0x00001000) /*!< PB[11] pin */ |
2702 | #define AFIO_EXTICR3_EXTI11_PB AFIO_EXTICR3_EXTI11_PB_Msk /*!< PB[11] pin */ |
- | 2703 | #define AFIO_EXTICR3_EXTI11_PC_Pos (13U) |
|
- | 2704 | #define AFIO_EXTICR3_EXTI11_PC_Msk (0x1U << AFIO_EXTICR3_EXTI11_PC_Pos) /*!< 0x00002000 */ |
|
1765 | #define AFIO_EXTICR3_EXTI11_PC ((uint32_t)0x00002000) /*!< PC[11] pin */ |
2705 | #define AFIO_EXTICR3_EXTI11_PC AFIO_EXTICR3_EXTI11_PC_Msk /*!< PC[11] pin */ |
- | 2706 | #define AFIO_EXTICR3_EXTI11_PD_Pos (12U) |
|
- | 2707 | #define AFIO_EXTICR3_EXTI11_PD_Msk (0x3U << AFIO_EXTICR3_EXTI11_PD_Pos) /*!< 0x00003000 */ |
|
1766 | #define AFIO_EXTICR3_EXTI11_PD ((uint32_t)0x00003000) /*!< PD[11] pin */ |
2708 | #define AFIO_EXTICR3_EXTI11_PD AFIO_EXTICR3_EXTI11_PD_Msk /*!< PD[11] pin */ |
- | 2709 | #define AFIO_EXTICR3_EXTI11_PE_Pos (14U) |
|
- | 2710 | #define AFIO_EXTICR3_EXTI11_PE_Msk (0x1U << AFIO_EXTICR3_EXTI11_PE_Pos) /*!< 0x00004000 */ |
|
1767 | #define AFIO_EXTICR3_EXTI11_PE ((uint32_t)0x00004000) /*!< PE[11] pin */ |
2711 | #define AFIO_EXTICR3_EXTI11_PE AFIO_EXTICR3_EXTI11_PE_Msk /*!< PE[11] pin */ |
- | 2712 | #define AFIO_EXTICR3_EXTI11_PF_Pos (12U) |
|
- | 2713 | #define AFIO_EXTICR3_EXTI11_PF_Msk (0x5U << AFIO_EXTICR3_EXTI11_PF_Pos) /*!< 0x00005000 */ |
|
1768 | #define AFIO_EXTICR3_EXTI11_PF ((uint32_t)0x00005000) /*!< PF[11] pin */ |
2714 | #define AFIO_EXTICR3_EXTI11_PF AFIO_EXTICR3_EXTI11_PF_Msk /*!< PF[11] pin */ |
- | 2715 | #define AFIO_EXTICR3_EXTI11_PG_Pos (13U) |
|
- | 2716 | #define AFIO_EXTICR3_EXTI11_PG_Msk (0x3U << AFIO_EXTICR3_EXTI11_PG_Pos) /*!< 0x00006000 */ |
|
1769 | #define AFIO_EXTICR3_EXTI11_PG ((uint32_t)0x00006000) /*!< PG[11] pin */ |
2717 | #define AFIO_EXTICR3_EXTI11_PG AFIO_EXTICR3_EXTI11_PG_Msk /*!< PG[11] pin */ |
1770 | 2718 | ||
1771 | /***************** Bit definition for AFIO_EXTICR4 register *****************/ |
2719 | /***************** Bit definition for AFIO_EXTICR4 register *****************/ |
- | 2720 | #define AFIO_EXTICR4_EXTI12_Pos (0U) |
|
- | 2721 | #define AFIO_EXTICR4_EXTI12_Msk (0xFU << AFIO_EXTICR4_EXTI12_Pos) /*!< 0x0000000F */ |
|
1772 | #define AFIO_EXTICR4_EXTI12 ((uint32_t)0x0000000F) /*!< EXTI 12 configuration */ |
2722 | #define AFIO_EXTICR4_EXTI12 AFIO_EXTICR4_EXTI12_Msk /*!< EXTI 12 configuration */ |
- | 2723 | #define AFIO_EXTICR4_EXTI13_Pos (4U) |
|
- | 2724 | #define AFIO_EXTICR4_EXTI13_Msk (0xFU << AFIO_EXTICR4_EXTI13_Pos) /*!< 0x000000F0 */ |
|
1773 | #define AFIO_EXTICR4_EXTI13 ((uint32_t)0x000000F0) /*!< EXTI 13 configuration */ |
2725 | #define AFIO_EXTICR4_EXTI13 AFIO_EXTICR4_EXTI13_Msk /*!< EXTI 13 configuration */ |
- | 2726 | #define AFIO_EXTICR4_EXTI14_Pos (8U) |
|
- | 2727 | #define AFIO_EXTICR4_EXTI14_Msk (0xFU << AFIO_EXTICR4_EXTI14_Pos) /*!< 0x00000F00 */ |
|
1774 | #define AFIO_EXTICR4_EXTI14 ((uint32_t)0x00000F00) /*!< EXTI 14 configuration */ |
2728 | #define AFIO_EXTICR4_EXTI14 AFIO_EXTICR4_EXTI14_Msk /*!< EXTI 14 configuration */ |
- | 2729 | #define AFIO_EXTICR4_EXTI15_Pos (12U) |
|
- | 2730 | #define AFIO_EXTICR4_EXTI15_Msk (0xFU << AFIO_EXTICR4_EXTI15_Pos) /*!< 0x0000F000 */ |
|
1775 | #define AFIO_EXTICR4_EXTI15 ((uint32_t)0x0000F000) /*!< EXTI 15 configuration */ |
2731 | #define AFIO_EXTICR4_EXTI15 AFIO_EXTICR4_EXTI15_Msk /*!< EXTI 15 configuration */ |
1776 | 2732 | ||
1777 | /* EXTI12 configuration */ |
2733 | /* EXTI12 configuration */ |
1778 | #define AFIO_EXTICR4_EXTI12_PA ((uint32_t)0x00000000) /*!< PA[12] pin */ |
2734 | #define AFIO_EXTICR4_EXTI12_PA ((uint32_t)0x00000000) /*!< PA[12] pin */ |
- | 2735 | #define AFIO_EXTICR4_EXTI12_PB_Pos (0U) |
|
- | 2736 | #define AFIO_EXTICR4_EXTI12_PB_Msk (0x1U << AFIO_EXTICR4_EXTI12_PB_Pos) /*!< 0x00000001 */ |
|
1779 | #define AFIO_EXTICR4_EXTI12_PB ((uint32_t)0x00000001) /*!< PB[12] pin */ |
2737 | #define AFIO_EXTICR4_EXTI12_PB AFIO_EXTICR4_EXTI12_PB_Msk /*!< PB[12] pin */ |
- | 2738 | #define AFIO_EXTICR4_EXTI12_PC_Pos (1U) |
|
- | 2739 | #define AFIO_EXTICR4_EXTI12_PC_Msk (0x1U << AFIO_EXTICR4_EXTI12_PC_Pos) /*!< 0x00000002 */ |
|
1780 | #define AFIO_EXTICR4_EXTI12_PC ((uint32_t)0x00000002) /*!< PC[12] pin */ |
2740 | #define AFIO_EXTICR4_EXTI12_PC AFIO_EXTICR4_EXTI12_PC_Msk /*!< PC[12] pin */ |
- | 2741 | #define AFIO_EXTICR4_EXTI12_PD_Pos (0U) |
|
- | 2742 | #define AFIO_EXTICR4_EXTI12_PD_Msk (0x3U << AFIO_EXTICR4_EXTI12_PD_Pos) /*!< 0x00000003 */ |
|
1781 | #define AFIO_EXTICR4_EXTI12_PD ((uint32_t)0x00000003) /*!< PD[12] pin */ |
2743 | #define AFIO_EXTICR4_EXTI12_PD AFIO_EXTICR4_EXTI12_PD_Msk /*!< PD[12] pin */ |
- | 2744 | #define AFIO_EXTICR4_EXTI12_PE_Pos (2U) |
|
- | 2745 | #define AFIO_EXTICR4_EXTI12_PE_Msk (0x1U << AFIO_EXTICR4_EXTI12_PE_Pos) /*!< 0x00000004 */ |
|
1782 | #define AFIO_EXTICR4_EXTI12_PE ((uint32_t)0x00000004) /*!< PE[12] pin */ |
2746 | #define AFIO_EXTICR4_EXTI12_PE AFIO_EXTICR4_EXTI12_PE_Msk /*!< PE[12] pin */ |
- | 2747 | #define AFIO_EXTICR4_EXTI12_PF_Pos (0U) |
|
- | 2748 | #define AFIO_EXTICR4_EXTI12_PF_Msk (0x5U << AFIO_EXTICR4_EXTI12_PF_Pos) /*!< 0x00000005 */ |
|
1783 | #define AFIO_EXTICR4_EXTI12_PF ((uint32_t)0x00000005) /*!< PF[12] pin */ |
2749 | #define AFIO_EXTICR4_EXTI12_PF AFIO_EXTICR4_EXTI12_PF_Msk /*!< PF[12] pin */ |
- | 2750 | #define AFIO_EXTICR4_EXTI12_PG_Pos (1U) |
|
- | 2751 | #define AFIO_EXTICR4_EXTI12_PG_Msk (0x3U << AFIO_EXTICR4_EXTI12_PG_Pos) /*!< 0x00000006 */ |
|
1784 | #define AFIO_EXTICR4_EXTI12_PG ((uint32_t)0x00000006) /*!< PG[12] pin */ |
2752 | #define AFIO_EXTICR4_EXTI12_PG AFIO_EXTICR4_EXTI12_PG_Msk /*!< PG[12] pin */ |
1785 | 2753 | ||
1786 | /* EXTI13 configuration */ |
2754 | /* EXTI13 configuration */ |
1787 | #define AFIO_EXTICR4_EXTI13_PA ((uint32_t)0x00000000) /*!< PA[13] pin */ |
2755 | #define AFIO_EXTICR4_EXTI13_PA ((uint32_t)0x00000000) /*!< PA[13] pin */ |
- | 2756 | #define AFIO_EXTICR4_EXTI13_PB_Pos (4U) |
|
- | 2757 | #define AFIO_EXTICR4_EXTI13_PB_Msk (0x1U << AFIO_EXTICR4_EXTI13_PB_Pos) /*!< 0x00000010 */ |
|
1788 | #define AFIO_EXTICR4_EXTI13_PB ((uint32_t)0x00000010) /*!< PB[13] pin */ |
2758 | #define AFIO_EXTICR4_EXTI13_PB AFIO_EXTICR4_EXTI13_PB_Msk /*!< PB[13] pin */ |
- | 2759 | #define AFIO_EXTICR4_EXTI13_PC_Pos (5U) |
|
- | 2760 | #define AFIO_EXTICR4_EXTI13_PC_Msk (0x1U << AFIO_EXTICR4_EXTI13_PC_Pos) /*!< 0x00000020 */ |
|
1789 | #define AFIO_EXTICR4_EXTI13_PC ((uint32_t)0x00000020) /*!< PC[13] pin */ |
2761 | #define AFIO_EXTICR4_EXTI13_PC AFIO_EXTICR4_EXTI13_PC_Msk /*!< PC[13] pin */ |
- | 2762 | #define AFIO_EXTICR4_EXTI13_PD_Pos (4U) |
|
- | 2763 | #define AFIO_EXTICR4_EXTI13_PD_Msk (0x3U << AFIO_EXTICR4_EXTI13_PD_Pos) /*!< 0x00000030 */ |
|
1790 | #define AFIO_EXTICR4_EXTI13_PD ((uint32_t)0x00000030) /*!< PD[13] pin */ |
2764 | #define AFIO_EXTICR4_EXTI13_PD AFIO_EXTICR4_EXTI13_PD_Msk /*!< PD[13] pin */ |
- | 2765 | #define AFIO_EXTICR4_EXTI13_PE_Pos (6U) |
|
- | 2766 | #define AFIO_EXTICR4_EXTI13_PE_Msk (0x1U << AFIO_EXTICR4_EXTI13_PE_Pos) /*!< 0x00000040 */ |
|
1791 | #define AFIO_EXTICR4_EXTI13_PE ((uint32_t)0x00000040) /*!< PE[13] pin */ |
2767 | #define AFIO_EXTICR4_EXTI13_PE AFIO_EXTICR4_EXTI13_PE_Msk /*!< PE[13] pin */ |
- | 2768 | #define AFIO_EXTICR4_EXTI13_PF_Pos (4U) |
|
- | 2769 | #define AFIO_EXTICR4_EXTI13_PF_Msk (0x5U << AFIO_EXTICR4_EXTI13_PF_Pos) /*!< 0x00000050 */ |
|
1792 | #define AFIO_EXTICR4_EXTI13_PF ((uint32_t)0x00000050) /*!< PF[13] pin */ |
2770 | #define AFIO_EXTICR4_EXTI13_PF AFIO_EXTICR4_EXTI13_PF_Msk /*!< PF[13] pin */ |
- | 2771 | #define AFIO_EXTICR4_EXTI13_PG_Pos (5U) |
|
- | 2772 | #define AFIO_EXTICR4_EXTI13_PG_Msk (0x3U << AFIO_EXTICR4_EXTI13_PG_Pos) /*!< 0x00000060 */ |
|
1793 | #define AFIO_EXTICR4_EXTI13_PG ((uint32_t)0x00000060) /*!< PG[13] pin */ |
2773 | #define AFIO_EXTICR4_EXTI13_PG AFIO_EXTICR4_EXTI13_PG_Msk /*!< PG[13] pin */ |
1794 | 2774 | ||
1795 | /*!< EXTI14 configuration */ |
2775 | /*!< EXTI14 configuration */ |
1796 | #define AFIO_EXTICR4_EXTI14_PA ((uint32_t)0x00000000) /*!< PA[14] pin */ |
2776 | #define AFIO_EXTICR4_EXTI14_PA ((uint32_t)0x00000000) /*!< PA[14] pin */ |
- | 2777 | #define AFIO_EXTICR4_EXTI14_PB_Pos (8U) |
|
- | 2778 | #define AFIO_EXTICR4_EXTI14_PB_Msk (0x1U << AFIO_EXTICR4_EXTI14_PB_Pos) /*!< 0x00000100 */ |
|
1797 | #define AFIO_EXTICR4_EXTI14_PB ((uint32_t)0x00000100) /*!< PB[14] pin */ |
2779 | #define AFIO_EXTICR4_EXTI14_PB AFIO_EXTICR4_EXTI14_PB_Msk /*!< PB[14] pin */ |
- | 2780 | #define AFIO_EXTICR4_EXTI14_PC_Pos (9U) |
|
- | 2781 | #define AFIO_EXTICR4_EXTI14_PC_Msk (0x1U << AFIO_EXTICR4_EXTI14_PC_Pos) /*!< 0x00000200 */ |
|
1798 | #define AFIO_EXTICR4_EXTI14_PC ((uint32_t)0x00000200) /*!< PC[14] pin */ |
2782 | #define AFIO_EXTICR4_EXTI14_PC AFIO_EXTICR4_EXTI14_PC_Msk /*!< PC[14] pin */ |
- | 2783 | #define AFIO_EXTICR4_EXTI14_PD_Pos (8U) |
|
- | 2784 | #define AFIO_EXTICR4_EXTI14_PD_Msk (0x3U << AFIO_EXTICR4_EXTI14_PD_Pos) /*!< 0x00000300 */ |
|
1799 | #define AFIO_EXTICR4_EXTI14_PD ((uint32_t)0x00000300) /*!< PD[14] pin */ |
2785 | #define AFIO_EXTICR4_EXTI14_PD AFIO_EXTICR4_EXTI14_PD_Msk /*!< PD[14] pin */ |
- | 2786 | #define AFIO_EXTICR4_EXTI14_PE_Pos (10U) |
|
- | 2787 | #define AFIO_EXTICR4_EXTI14_PE_Msk (0x1U << AFIO_EXTICR4_EXTI14_PE_Pos) /*!< 0x00000400 */ |
|
1800 | #define AFIO_EXTICR4_EXTI14_PE ((uint32_t)0x00000400) /*!< PE[14] pin */ |
2788 | #define AFIO_EXTICR4_EXTI14_PE AFIO_EXTICR4_EXTI14_PE_Msk /*!< PE[14] pin */ |
- | 2789 | #define AFIO_EXTICR4_EXTI14_PF_Pos (8U) |
|
- | 2790 | #define AFIO_EXTICR4_EXTI14_PF_Msk (0x5U << AFIO_EXTICR4_EXTI14_PF_Pos) /*!< 0x00000500 */ |
|
1801 | #define AFIO_EXTICR4_EXTI14_PF ((uint32_t)0x00000500) /*!< PF[14] pin */ |
2791 | #define AFIO_EXTICR4_EXTI14_PF AFIO_EXTICR4_EXTI14_PF_Msk /*!< PF[14] pin */ |
- | 2792 | #define AFIO_EXTICR4_EXTI14_PG_Pos (9U) |
|
- | 2793 | #define AFIO_EXTICR4_EXTI14_PG_Msk (0x3U << AFIO_EXTICR4_EXTI14_PG_Pos) /*!< 0x00000600 */ |
|
1802 | #define AFIO_EXTICR4_EXTI14_PG ((uint32_t)0x00000600) /*!< PG[14] pin */ |
2794 | #define AFIO_EXTICR4_EXTI14_PG AFIO_EXTICR4_EXTI14_PG_Msk /*!< PG[14] pin */ |
1803 | 2795 | ||
1804 | /*!< EXTI15 configuration */ |
2796 | /*!< EXTI15 configuration */ |
1805 | #define AFIO_EXTICR4_EXTI15_PA ((uint32_t)0x00000000) /*!< PA[15] pin */ |
2797 | #define AFIO_EXTICR4_EXTI15_PA ((uint32_t)0x00000000) /*!< PA[15] pin */ |
- | 2798 | #define AFIO_EXTICR4_EXTI15_PB_Pos (12U) |
|
- | 2799 | #define AFIO_EXTICR4_EXTI15_PB_Msk (0x1U << AFIO_EXTICR4_EXTI15_PB_Pos) /*!< 0x00001000 */ |
|
1806 | #define AFIO_EXTICR4_EXTI15_PB ((uint32_t)0x00001000) /*!< PB[15] pin */ |
2800 | #define AFIO_EXTICR4_EXTI15_PB AFIO_EXTICR4_EXTI15_PB_Msk /*!< PB[15] pin */ |
- | 2801 | #define AFIO_EXTICR4_EXTI15_PC_Pos (13U) |
|
- | 2802 | #define AFIO_EXTICR4_EXTI15_PC_Msk (0x1U << AFIO_EXTICR4_EXTI15_PC_Pos) /*!< 0x00002000 */ |
|
1807 | #define AFIO_EXTICR4_EXTI15_PC ((uint32_t)0x00002000) /*!< PC[15] pin */ |
2803 | #define AFIO_EXTICR4_EXTI15_PC AFIO_EXTICR4_EXTI15_PC_Msk /*!< PC[15] pin */ |
- | 2804 | #define AFIO_EXTICR4_EXTI15_PD_Pos (12U) |
|
- | 2805 | #define AFIO_EXTICR4_EXTI15_PD_Msk (0x3U << AFIO_EXTICR4_EXTI15_PD_Pos) /*!< 0x00003000 */ |
|
1808 | #define AFIO_EXTICR4_EXTI15_PD ((uint32_t)0x00003000) /*!< PD[15] pin */ |
2806 | #define AFIO_EXTICR4_EXTI15_PD AFIO_EXTICR4_EXTI15_PD_Msk /*!< PD[15] pin */ |
- | 2807 | #define AFIO_EXTICR4_EXTI15_PE_Pos (14U) |
|
- | 2808 | #define AFIO_EXTICR4_EXTI15_PE_Msk (0x1U << AFIO_EXTICR4_EXTI15_PE_Pos) /*!< 0x00004000 */ |
|
1809 | #define AFIO_EXTICR4_EXTI15_PE ((uint32_t)0x00004000) /*!< PE[15] pin */ |
2809 | #define AFIO_EXTICR4_EXTI15_PE AFIO_EXTICR4_EXTI15_PE_Msk /*!< PE[15] pin */ |
- | 2810 | #define AFIO_EXTICR4_EXTI15_PF_Pos (12U) |
|
- | 2811 | #define AFIO_EXTICR4_EXTI15_PF_Msk (0x5U << AFIO_EXTICR4_EXTI15_PF_Pos) /*!< 0x00005000 */ |
|
1810 | #define AFIO_EXTICR4_EXTI15_PF ((uint32_t)0x00005000) /*!< PF[15] pin */ |
2812 | #define AFIO_EXTICR4_EXTI15_PF AFIO_EXTICR4_EXTI15_PF_Msk /*!< PF[15] pin */ |
- | 2813 | #define AFIO_EXTICR4_EXTI15_PG_Pos (13U) |
|
- | 2814 | #define AFIO_EXTICR4_EXTI15_PG_Msk (0x3U << AFIO_EXTICR4_EXTI15_PG_Pos) /*!< 0x00006000 */ |
|
1811 | #define AFIO_EXTICR4_EXTI15_PG ((uint32_t)0x00006000) /*!< PG[15] pin */ |
2815 | #define AFIO_EXTICR4_EXTI15_PG AFIO_EXTICR4_EXTI15_PG_Msk /*!< PG[15] pin */ |
1812 | 2816 | ||
1813 | /****************** Bit definition for AFIO_MAPR2 register ******************/ |
2817 | /****************** Bit definition for AFIO_MAPR2 register ******************/ |
1814 | 2818 | ||
1815 | 2819 | ||
- | 2820 | #define AFIO_MAPR2_FSMC_NADV_REMAP_Pos (10U) |
|
- | 2821 | #define AFIO_MAPR2_FSMC_NADV_REMAP_Msk (0x1U << AFIO_MAPR2_FSMC_NADV_REMAP_Pos) /*!< 0x00000400 */ |
|
1816 | #define AFIO_MAPR2_FSMC_NADV_REMAP ((uint32_t)0x00000400) /*!< FSMC NADV remapping */ |
2822 | #define AFIO_MAPR2_FSMC_NADV_REMAP AFIO_MAPR2_FSMC_NADV_REMAP_Msk /*!< FSMC NADV remapping */ |
1817 | 2823 | ||
1818 | /******************************************************************************/ |
2824 | /******************************************************************************/ |
1819 | /* */ |
2825 | /* */ |
1820 | /* SystemTick */ |
2826 | /* SystemTick */ |
1821 | /* */ |
2827 | /* */ |
1822 | /******************************************************************************/ |
2828 | /******************************************************************************/ |
1823 | 2829 | ||
1824 | /***************** Bit definition for SysTick_CTRL register *****************/ |
2830 | /***************** Bit definition for SysTick_CTRL register *****************/ |
1825 | #define SysTick_CTRL_ENABLE ((uint32_t)0x00000001) /*!< Counter enable */ |
2831 | #define SysTick_CTRL_ENABLE ((uint32_t)0x00000001) /*!< Counter enable */ |
1826 | #define SysTick_CTRL_TICKINT ((uint32_t)0x00000002) /*!< Counting down to 0 pends the SysTick handler */ |
2832 | #define SysTick_CTRL_TICKINT ((uint32_t)0x00000002) /*!< Counting down to 0 pends the SysTick handler */ |
1827 | #define SysTick_CTRL_CLKSOURCE ((uint32_t)0x00000004) /*!< Clock source */ |
2833 | #define SysTick_CTRL_CLKSOURCE ((uint32_t)0x00000004) /*!< Clock source */ |
1828 | #define SysTick_CTRL_COUNTFLAG ((uint32_t)0x00010000) /*!< Count Flag */ |
2834 | #define SysTick_CTRL_COUNTFLAG ((uint32_t)0x00010000) /*!< Count Flag */ |
1829 | 2835 | ||
1830 | /***************** Bit definition for SysTick_LOAD register *****************/ |
2836 | /***************** Bit definition for SysTick_LOAD register *****************/ |
1831 | #define SysTick_LOAD_RELOAD ((uint32_t)0x00FFFFFF) /*!< Value to load into the SysTick Current Value Register when the counter reaches 0 */ |
2837 | #define SysTick_LOAD_RELOAD ((uint32_t)0x00FFFFFF) /*!< Value to load into the SysTick Current Value Register when the counter reaches 0 */ |
1832 | 2838 | ||
1833 | /***************** Bit definition for SysTick_VAL register ******************/ |
2839 | /***************** Bit definition for SysTick_VAL register ******************/ |
1834 | #define SysTick_VAL_CURRENT ((uint32_t)0x00FFFFFF) /*!< Current value at the time the register is accessed */ |
2840 | #define SysTick_VAL_CURRENT ((uint32_t)0x00FFFFFF) /*!< Current value at the time the register is accessed */ |
1835 | 2841 | ||
1836 | /***************** Bit definition for SysTick_CALIB register ****************/ |
2842 | /***************** Bit definition for SysTick_CALIB register ****************/ |
1837 | #define SysTick_CALIB_TENMS ((uint32_t)0x00FFFFFF) /*!< Reload value to use for 10ms timing */ |
2843 | #define SysTick_CALIB_TENMS ((uint32_t)0x00FFFFFF) /*!< Reload value to use for 10ms timing */ |
1838 | #define SysTick_CALIB_SKEW ((uint32_t)0x40000000) /*!< Calibration value is not exactly 10 ms */ |
2844 | #define SysTick_CALIB_SKEW ((uint32_t)0x40000000) /*!< Calibration value is not exactly 10 ms */ |
1839 | #define SysTick_CALIB_NOREF ((uint32_t)0x80000000) /*!< The reference clock is not provided */ |
2845 | #define SysTick_CALIB_NOREF ((uint32_t)0x80000000) /*!< The reference clock is not provided */ |
1840 | 2846 | ||
1841 | /******************************************************************************/ |
2847 | /******************************************************************************/ |
1842 | /* */ |
2848 | /* */ |
1843 | /* Nested Vectored Interrupt Controller */ |
2849 | /* Nested Vectored Interrupt Controller */ |
1844 | /* */ |
2850 | /* */ |
1845 | /******************************************************************************/ |
2851 | /******************************************************************************/ |
1846 | 2852 | ||
1847 | /****************** Bit definition for NVIC_ISER register *******************/ |
2853 | /****************** Bit definition for NVIC_ISER register *******************/ |
- | 2854 | #define NVIC_ISER_SETENA_Pos (0U) |
|
- | 2855 | #define NVIC_ISER_SETENA_Msk (0xFFFFFFFFU << NVIC_ISER_SETENA_Pos) /*!< 0xFFFFFFFF */ |
|
1848 | #define NVIC_ISER_SETENA ((uint32_t)0xFFFFFFFF) /*!< Interrupt set enable bits */ |
2856 | #define NVIC_ISER_SETENA NVIC_ISER_SETENA_Msk /*!< Interrupt set enable bits */ |
1849 | #define NVIC_ISER_SETENA_0 ((uint32_t)0x00000001) /*!< bit 0 */ |
2857 | #define NVIC_ISER_SETENA_0 (0x00000001U << NVIC_ISER_SETENA_Pos) /*!< 0x00000001 */ |
1850 | #define NVIC_ISER_SETENA_1 ((uint32_t)0x00000002) /*!< bit 1 */ |
2858 | #define NVIC_ISER_SETENA_1 (0x00000002U << NVIC_ISER_SETENA_Pos) /*!< 0x00000002 */ |
1851 | #define NVIC_ISER_SETENA_2 ((uint32_t)0x00000004) /*!< bit 2 */ |
2859 | #define NVIC_ISER_SETENA_2 (0x00000004U << NVIC_ISER_SETENA_Pos) /*!< 0x00000004 */ |
1852 | #define NVIC_ISER_SETENA_3 ((uint32_t)0x00000008) /*!< bit 3 */ |
2860 | #define NVIC_ISER_SETENA_3 (0x00000008U << NVIC_ISER_SETENA_Pos) /*!< 0x00000008 */ |
1853 | #define NVIC_ISER_SETENA_4 ((uint32_t)0x00000010) /*!< bit 4 */ |
2861 | #define NVIC_ISER_SETENA_4 (0x00000010U << NVIC_ISER_SETENA_Pos) /*!< 0x00000010 */ |
1854 | #define NVIC_ISER_SETENA_5 ((uint32_t)0x00000020) /*!< bit 5 */ |
2862 | #define NVIC_ISER_SETENA_5 (0x00000020U << NVIC_ISER_SETENA_Pos) /*!< 0x00000020 */ |
1855 | #define NVIC_ISER_SETENA_6 ((uint32_t)0x00000040) /*!< bit 6 */ |
2863 | #define NVIC_ISER_SETENA_6 (0x00000040U << NVIC_ISER_SETENA_Pos) /*!< 0x00000040 */ |
1856 | #define NVIC_ISER_SETENA_7 ((uint32_t)0x00000080) /*!< bit 7 */ |
2864 | #define NVIC_ISER_SETENA_7 (0x00000080U << NVIC_ISER_SETENA_Pos) /*!< 0x00000080 */ |
1857 | #define NVIC_ISER_SETENA_8 ((uint32_t)0x00000100) /*!< bit 8 */ |
2865 | #define NVIC_ISER_SETENA_8 (0x00000100U << NVIC_ISER_SETENA_Pos) /*!< 0x00000100 */ |
1858 | #define NVIC_ISER_SETENA_9 ((uint32_t)0x00000200) /*!< bit 9 */ |
2866 | #define NVIC_ISER_SETENA_9 (0x00000200U << NVIC_ISER_SETENA_Pos) /*!< 0x00000200 */ |
1859 | #define NVIC_ISER_SETENA_10 ((uint32_t)0x00000400) /*!< bit 10 */ |
2867 | #define NVIC_ISER_SETENA_10 (0x00000400U << NVIC_ISER_SETENA_Pos) /*!< 0x00000400 */ |
1860 | #define NVIC_ISER_SETENA_11 ((uint32_t)0x00000800) /*!< bit 11 */ |
2868 | #define NVIC_ISER_SETENA_11 (0x00000800U << NVIC_ISER_SETENA_Pos) /*!< 0x00000800 */ |
1861 | #define NVIC_ISER_SETENA_12 ((uint32_t)0x00001000) /*!< bit 12 */ |
2869 | #define NVIC_ISER_SETENA_12 (0x00001000U << NVIC_ISER_SETENA_Pos) /*!< 0x00001000 */ |
1862 | #define NVIC_ISER_SETENA_13 ((uint32_t)0x00002000) /*!< bit 13 */ |
2870 | #define NVIC_ISER_SETENA_13 (0x00002000U << NVIC_ISER_SETENA_Pos) /*!< 0x00002000 */ |
1863 | #define NVIC_ISER_SETENA_14 ((uint32_t)0x00004000) /*!< bit 14 */ |
2871 | #define NVIC_ISER_SETENA_14 (0x00004000U << NVIC_ISER_SETENA_Pos) /*!< 0x00004000 */ |
1864 | #define NVIC_ISER_SETENA_15 ((uint32_t)0x00008000) /*!< bit 15 */ |
2872 | #define NVIC_ISER_SETENA_15 (0x00008000U << NVIC_ISER_SETENA_Pos) /*!< 0x00008000 */ |
1865 | #define NVIC_ISER_SETENA_16 ((uint32_t)0x00010000) /*!< bit 16 */ |
2873 | #define NVIC_ISER_SETENA_16 (0x00010000U << NVIC_ISER_SETENA_Pos) /*!< 0x00010000 */ |
1866 | #define NVIC_ISER_SETENA_17 ((uint32_t)0x00020000) /*!< bit 17 */ |
2874 | #define NVIC_ISER_SETENA_17 (0x00020000U << NVIC_ISER_SETENA_Pos) /*!< 0x00020000 */ |
1867 | #define NVIC_ISER_SETENA_18 ((uint32_t)0x00040000) /*!< bit 18 */ |
2875 | #define NVIC_ISER_SETENA_18 (0x00040000U << NVIC_ISER_SETENA_Pos) /*!< 0x00040000 */ |
1868 | #define NVIC_ISER_SETENA_19 ((uint32_t)0x00080000) /*!< bit 19 */ |
2876 | #define NVIC_ISER_SETENA_19 (0x00080000U << NVIC_ISER_SETENA_Pos) /*!< 0x00080000 */ |
1869 | #define NVIC_ISER_SETENA_20 ((uint32_t)0x00100000) /*!< bit 20 */ |
2877 | #define NVIC_ISER_SETENA_20 (0x00100000U << NVIC_ISER_SETENA_Pos) /*!< 0x00100000 */ |
1870 | #define NVIC_ISER_SETENA_21 ((uint32_t)0x00200000) /*!< bit 21 */ |
2878 | #define NVIC_ISER_SETENA_21 (0x00200000U << NVIC_ISER_SETENA_Pos) /*!< 0x00200000 */ |
1871 | #define NVIC_ISER_SETENA_22 ((uint32_t)0x00400000) /*!< bit 22 */ |
2879 | #define NVIC_ISER_SETENA_22 (0x00400000U << NVIC_ISER_SETENA_Pos) /*!< 0x00400000 */ |
1872 | #define NVIC_ISER_SETENA_23 ((uint32_t)0x00800000) /*!< bit 23 */ |
2880 | #define NVIC_ISER_SETENA_23 (0x00800000U << NVIC_ISER_SETENA_Pos) /*!< 0x00800000 */ |
1873 | #define NVIC_ISER_SETENA_24 ((uint32_t)0x01000000) /*!< bit 24 */ |
2881 | #define NVIC_ISER_SETENA_24 (0x01000000U << NVIC_ISER_SETENA_Pos) /*!< 0x01000000 */ |
1874 | #define NVIC_ISER_SETENA_25 ((uint32_t)0x02000000) /*!< bit 25 */ |
2882 | #define NVIC_ISER_SETENA_25 (0x02000000U << NVIC_ISER_SETENA_Pos) /*!< 0x02000000 */ |
1875 | #define NVIC_ISER_SETENA_26 ((uint32_t)0x04000000) /*!< bit 26 */ |
2883 | #define NVIC_ISER_SETENA_26 (0x04000000U << NVIC_ISER_SETENA_Pos) /*!< 0x04000000 */ |
1876 | #define NVIC_ISER_SETENA_27 ((uint32_t)0x08000000) /*!< bit 27 */ |
2884 | #define NVIC_ISER_SETENA_27 (0x08000000U << NVIC_ISER_SETENA_Pos) /*!< 0x08000000 */ |
1877 | #define NVIC_ISER_SETENA_28 ((uint32_t)0x10000000) /*!< bit 28 */ |
2885 | #define NVIC_ISER_SETENA_28 (0x10000000U << NVIC_ISER_SETENA_Pos) /*!< 0x10000000 */ |
1878 | #define NVIC_ISER_SETENA_29 ((uint32_t)0x20000000) /*!< bit 29 */ |
2886 | #define NVIC_ISER_SETENA_29 (0x20000000U << NVIC_ISER_SETENA_Pos) /*!< 0x20000000 */ |
1879 | #define NVIC_ISER_SETENA_30 ((uint32_t)0x40000000) /*!< bit 30 */ |
2887 | #define NVIC_ISER_SETENA_30 (0x40000000U << NVIC_ISER_SETENA_Pos) /*!< 0x40000000 */ |
1880 | #define NVIC_ISER_SETENA_31 ((uint32_t)0x80000000) /*!< bit 31 */ |
2888 | #define NVIC_ISER_SETENA_31 (0x80000000U << NVIC_ISER_SETENA_Pos) /*!< 0x80000000 */ |
1881 | 2889 | ||
1882 | /****************** Bit definition for NVIC_ICER register *******************/ |
2890 | /****************** Bit definition for NVIC_ICER register *******************/ |
- | 2891 | #define NVIC_ICER_CLRENA_Pos (0U) |
|
- | 2892 | #define NVIC_ICER_CLRENA_Msk (0xFFFFFFFFU << NVIC_ICER_CLRENA_Pos) /*!< 0xFFFFFFFF */ |
|
1883 | #define NVIC_ICER_CLRENA ((uint32_t)0xFFFFFFFF) /*!< Interrupt clear-enable bits */ |
2893 | #define NVIC_ICER_CLRENA NVIC_ICER_CLRENA_Msk /*!< Interrupt clear-enable bits */ |
1884 | #define NVIC_ICER_CLRENA_0 ((uint32_t)0x00000001) /*!< bit 0 */ |
2894 | #define NVIC_ICER_CLRENA_0 (0x00000001U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000001 */ |
1885 | #define NVIC_ICER_CLRENA_1 ((uint32_t)0x00000002) /*!< bit 1 */ |
2895 | #define NVIC_ICER_CLRENA_1 (0x00000002U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000002 */ |
1886 | #define NVIC_ICER_CLRENA_2 ((uint32_t)0x00000004) /*!< bit 2 */ |
2896 | #define NVIC_ICER_CLRENA_2 (0x00000004U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000004 */ |
1887 | #define NVIC_ICER_CLRENA_3 ((uint32_t)0x00000008) /*!< bit 3 */ |
2897 | #define NVIC_ICER_CLRENA_3 (0x00000008U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000008 */ |
1888 | #define NVIC_ICER_CLRENA_4 ((uint32_t)0x00000010) /*!< bit 4 */ |
2898 | #define NVIC_ICER_CLRENA_4 (0x00000010U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000010 */ |
1889 | #define NVIC_ICER_CLRENA_5 ((uint32_t)0x00000020) /*!< bit 5 */ |
2899 | #define NVIC_ICER_CLRENA_5 (0x00000020U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000020 */ |
1890 | #define NVIC_ICER_CLRENA_6 ((uint32_t)0x00000040) /*!< bit 6 */ |
2900 | #define NVIC_ICER_CLRENA_6 (0x00000040U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000040 */ |
1891 | #define NVIC_ICER_CLRENA_7 ((uint32_t)0x00000080) /*!< bit 7 */ |
2901 | #define NVIC_ICER_CLRENA_7 (0x00000080U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000080 */ |
1892 | #define NVIC_ICER_CLRENA_8 ((uint32_t)0x00000100) /*!< bit 8 */ |
2902 | #define NVIC_ICER_CLRENA_8 (0x00000100U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000100 */ |
1893 | #define NVIC_ICER_CLRENA_9 ((uint32_t)0x00000200) /*!< bit 9 */ |
2903 | #define NVIC_ICER_CLRENA_9 (0x00000200U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000200 */ |
1894 | #define NVIC_ICER_CLRENA_10 ((uint32_t)0x00000400) /*!< bit 10 */ |
2904 | #define NVIC_ICER_CLRENA_10 (0x00000400U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000400 */ |
1895 | #define NVIC_ICER_CLRENA_11 ((uint32_t)0x00000800) /*!< bit 11 */ |
2905 | #define NVIC_ICER_CLRENA_11 (0x00000800U << NVIC_ICER_CLRENA_Pos) /*!< 0x00000800 */ |
1896 | #define NVIC_ICER_CLRENA_12 ((uint32_t)0x00001000) /*!< bit 12 */ |
2906 | #define NVIC_ICER_CLRENA_12 (0x00001000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00001000 */ |
1897 | #define NVIC_ICER_CLRENA_13 ((uint32_t)0x00002000) /*!< bit 13 */ |
2907 | #define NVIC_ICER_CLRENA_13 (0x00002000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00002000 */ |
1898 | #define NVIC_ICER_CLRENA_14 ((uint32_t)0x00004000) /*!< bit 14 */ |
2908 | #define NVIC_ICER_CLRENA_14 (0x00004000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00004000 */ |
1899 | #define NVIC_ICER_CLRENA_15 ((uint32_t)0x00008000) /*!< bit 15 */ |
2909 | #define NVIC_ICER_CLRENA_15 (0x00008000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00008000 */ |
1900 | #define NVIC_ICER_CLRENA_16 ((uint32_t)0x00010000) /*!< bit 16 */ |
2910 | #define NVIC_ICER_CLRENA_16 (0x00010000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00010000 */ |
1901 | #define NVIC_ICER_CLRENA_17 ((uint32_t)0x00020000) /*!< bit 17 */ |
2911 | #define NVIC_ICER_CLRENA_17 (0x00020000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00020000 */ |
1902 | #define NVIC_ICER_CLRENA_18 ((uint32_t)0x00040000) /*!< bit 18 */ |
2912 | #define NVIC_ICER_CLRENA_18 (0x00040000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00040000 */ |
1903 | #define NVIC_ICER_CLRENA_19 ((uint32_t)0x00080000) /*!< bit 19 */ |
2913 | #define NVIC_ICER_CLRENA_19 (0x00080000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00080000 */ |
1904 | #define NVIC_ICER_CLRENA_20 ((uint32_t)0x00100000) /*!< bit 20 */ |
2914 | #define NVIC_ICER_CLRENA_20 (0x00100000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00100000 */ |
1905 | #define NVIC_ICER_CLRENA_21 ((uint32_t)0x00200000) /*!< bit 21 */ |
2915 | #define NVIC_ICER_CLRENA_21 (0x00200000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00200000 */ |
1906 | #define NVIC_ICER_CLRENA_22 ((uint32_t)0x00400000) /*!< bit 22 */ |
2916 | #define NVIC_ICER_CLRENA_22 (0x00400000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00400000 */ |
1907 | #define NVIC_ICER_CLRENA_23 ((uint32_t)0x00800000) /*!< bit 23 */ |
2917 | #define NVIC_ICER_CLRENA_23 (0x00800000U << NVIC_ICER_CLRENA_Pos) /*!< 0x00800000 */ |
1908 | #define NVIC_ICER_CLRENA_24 ((uint32_t)0x01000000) /*!< bit 24 */ |
2918 | #define NVIC_ICER_CLRENA_24 (0x01000000U << NVIC_ICER_CLRENA_Pos) /*!< 0x01000000 */ |
1909 | #define NVIC_ICER_CLRENA_25 ((uint32_t)0x02000000) /*!< bit 25 */ |
2919 | #define NVIC_ICER_CLRENA_25 (0x02000000U << NVIC_ICER_CLRENA_Pos) /*!< 0x02000000 */ |
1910 | #define NVIC_ICER_CLRENA_26 ((uint32_t)0x04000000) /*!< bit 26 */ |
2920 | #define NVIC_ICER_CLRENA_26 (0x04000000U << NVIC_ICER_CLRENA_Pos) /*!< 0x04000000 */ |
1911 | #define NVIC_ICER_CLRENA_27 ((uint32_t)0x08000000) /*!< bit 27 */ |
2921 | #define NVIC_ICER_CLRENA_27 (0x08000000U << NVIC_ICER_CLRENA_Pos) /*!< 0x08000000 */ |
1912 | #define NVIC_ICER_CLRENA_28 ((uint32_t)0x10000000) /*!< bit 28 */ |
2922 | #define NVIC_ICER_CLRENA_28 (0x10000000U << NVIC_ICER_CLRENA_Pos) /*!< 0x10000000 */ |
1913 | #define NVIC_ICER_CLRENA_29 ((uint32_t)0x20000000) /*!< bit 29 */ |
2923 | #define NVIC_ICER_CLRENA_29 (0x20000000U << NVIC_ICER_CLRENA_Pos) /*!< 0x20000000 */ |
1914 | #define NVIC_ICER_CLRENA_30 ((uint32_t)0x40000000) /*!< bit 30 */ |
2924 | #define NVIC_ICER_CLRENA_30 (0x40000000U << NVIC_ICER_CLRENA_Pos) /*!< 0x40000000 */ |
1915 | #define NVIC_ICER_CLRENA_31 ((uint32_t)0x80000000) /*!< bit 31 */ |
2925 | #define NVIC_ICER_CLRENA_31 (0x80000000U << NVIC_ICER_CLRENA_Pos) /*!< 0x80000000 */ |
1916 | 2926 | ||
1917 | /****************** Bit definition for NVIC_ISPR register *******************/ |
2927 | /****************** Bit definition for NVIC_ISPR register *******************/ |
- | 2928 | #define NVIC_ISPR_SETPEND_Pos (0U) |
|
- | 2929 | #define NVIC_ISPR_SETPEND_Msk (0xFFFFFFFFU << NVIC_ISPR_SETPEND_Pos) /*!< 0xFFFFFFFF */ |
|
1918 | #define NVIC_ISPR_SETPEND ((uint32_t)0xFFFFFFFF) /*!< Interrupt set-pending bits */ |
2930 | #define NVIC_ISPR_SETPEND NVIC_ISPR_SETPEND_Msk /*!< Interrupt set-pending bits */ |
1919 | #define NVIC_ISPR_SETPEND_0 ((uint32_t)0x00000001) /*!< bit 0 */ |
2931 | #define NVIC_ISPR_SETPEND_0 (0x00000001U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000001 */ |
1920 | #define NVIC_ISPR_SETPEND_1 ((uint32_t)0x00000002) /*!< bit 1 */ |
2932 | #define NVIC_ISPR_SETPEND_1 (0x00000002U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000002 */ |
1921 | #define NVIC_ISPR_SETPEND_2 ((uint32_t)0x00000004) /*!< bit 2 */ |
2933 | #define NVIC_ISPR_SETPEND_2 (0x00000004U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000004 */ |
1922 | #define NVIC_ISPR_SETPEND_3 ((uint32_t)0x00000008) /*!< bit 3 */ |
2934 | #define NVIC_ISPR_SETPEND_3 (0x00000008U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000008 */ |
1923 | #define NVIC_ISPR_SETPEND_4 ((uint32_t)0x00000010) /*!< bit 4 */ |
2935 | #define NVIC_ISPR_SETPEND_4 (0x00000010U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000010 */ |
1924 | #define NVIC_ISPR_SETPEND_5 ((uint32_t)0x00000020) /*!< bit 5 */ |
2936 | #define NVIC_ISPR_SETPEND_5 (0x00000020U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000020 */ |
1925 | #define NVIC_ISPR_SETPEND_6 ((uint32_t)0x00000040) /*!< bit 6 */ |
2937 | #define NVIC_ISPR_SETPEND_6 (0x00000040U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000040 */ |
1926 | #define NVIC_ISPR_SETPEND_7 ((uint32_t)0x00000080) /*!< bit 7 */ |
2938 | #define NVIC_ISPR_SETPEND_7 (0x00000080U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000080 */ |
1927 | #define NVIC_ISPR_SETPEND_8 ((uint32_t)0x00000100) /*!< bit 8 */ |
2939 | #define NVIC_ISPR_SETPEND_8 (0x00000100U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000100 */ |
1928 | #define NVIC_ISPR_SETPEND_9 ((uint32_t)0x00000200) /*!< bit 9 */ |
2940 | #define NVIC_ISPR_SETPEND_9 (0x00000200U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000200 */ |
1929 | #define NVIC_ISPR_SETPEND_10 ((uint32_t)0x00000400) /*!< bit 10 */ |
2941 | #define NVIC_ISPR_SETPEND_10 (0x00000400U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000400 */ |
1930 | #define NVIC_ISPR_SETPEND_11 ((uint32_t)0x00000800) /*!< bit 11 */ |
2942 | #define NVIC_ISPR_SETPEND_11 (0x00000800U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00000800 */ |
1931 | #define NVIC_ISPR_SETPEND_12 ((uint32_t)0x00001000) /*!< bit 12 */ |
2943 | #define NVIC_ISPR_SETPEND_12 (0x00001000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00001000 */ |
1932 | #define NVIC_ISPR_SETPEND_13 ((uint32_t)0x00002000) /*!< bit 13 */ |
2944 | #define NVIC_ISPR_SETPEND_13 (0x00002000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00002000 */ |
1933 | #define NVIC_ISPR_SETPEND_14 ((uint32_t)0x00004000) /*!< bit 14 */ |
2945 | #define NVIC_ISPR_SETPEND_14 (0x00004000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00004000 */ |
1934 | #define NVIC_ISPR_SETPEND_15 ((uint32_t)0x00008000) /*!< bit 15 */ |
2946 | #define NVIC_ISPR_SETPEND_15 (0x00008000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00008000 */ |
1935 | #define NVIC_ISPR_SETPEND_16 ((uint32_t)0x00010000) /*!< bit 16 */ |
2947 | #define NVIC_ISPR_SETPEND_16 (0x00010000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00010000 */ |
1936 | #define NVIC_ISPR_SETPEND_17 ((uint32_t)0x00020000) /*!< bit 17 */ |
2948 | #define NVIC_ISPR_SETPEND_17 (0x00020000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00020000 */ |
1937 | #define NVIC_ISPR_SETPEND_18 ((uint32_t)0x00040000) /*!< bit 18 */ |
2949 | #define NVIC_ISPR_SETPEND_18 (0x00040000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00040000 */ |
1938 | #define NVIC_ISPR_SETPEND_19 ((uint32_t)0x00080000) /*!< bit 19 */ |
2950 | #define NVIC_ISPR_SETPEND_19 (0x00080000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00080000 */ |
1939 | #define NVIC_ISPR_SETPEND_20 ((uint32_t)0x00100000) /*!< bit 20 */ |
2951 | #define NVIC_ISPR_SETPEND_20 (0x00100000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00100000 */ |
1940 | #define NVIC_ISPR_SETPEND_21 ((uint32_t)0x00200000) /*!< bit 21 */ |
2952 | #define NVIC_ISPR_SETPEND_21 (0x00200000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00200000 */ |
1941 | #define NVIC_ISPR_SETPEND_22 ((uint32_t)0x00400000) /*!< bit 22 */ |
2953 | #define NVIC_ISPR_SETPEND_22 (0x00400000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00400000 */ |
1942 | #define NVIC_ISPR_SETPEND_23 ((uint32_t)0x00800000) /*!< bit 23 */ |
2954 | #define NVIC_ISPR_SETPEND_23 (0x00800000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x00800000 */ |
1943 | #define NVIC_ISPR_SETPEND_24 ((uint32_t)0x01000000) /*!< bit 24 */ |
2955 | #define NVIC_ISPR_SETPEND_24 (0x01000000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x01000000 */ |
1944 | #define NVIC_ISPR_SETPEND_25 ((uint32_t)0x02000000) /*!< bit 25 */ |
2956 | #define NVIC_ISPR_SETPEND_25 (0x02000000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x02000000 */ |
1945 | #define NVIC_ISPR_SETPEND_26 ((uint32_t)0x04000000) /*!< bit 26 */ |
2957 | #define NVIC_ISPR_SETPEND_26 (0x04000000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x04000000 */ |
1946 | #define NVIC_ISPR_SETPEND_27 ((uint32_t)0x08000000) /*!< bit 27 */ |
2958 | #define NVIC_ISPR_SETPEND_27 (0x08000000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x08000000 */ |
1947 | #define NVIC_ISPR_SETPEND_28 ((uint32_t)0x10000000) /*!< bit 28 */ |
2959 | #define NVIC_ISPR_SETPEND_28 (0x10000000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x10000000 */ |
1948 | #define NVIC_ISPR_SETPEND_29 ((uint32_t)0x20000000) /*!< bit 29 */ |
2960 | #define NVIC_ISPR_SETPEND_29 (0x20000000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x20000000 */ |
1949 | #define NVIC_ISPR_SETPEND_30 ((uint32_t)0x40000000) /*!< bit 30 */ |
2961 | #define NVIC_ISPR_SETPEND_30 (0x40000000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x40000000 */ |
1950 | #define NVIC_ISPR_SETPEND_31 ((uint32_t)0x80000000) /*!< bit 31 */ |
2962 | #define NVIC_ISPR_SETPEND_31 (0x80000000U << NVIC_ISPR_SETPEND_Pos) /*!< 0x80000000 */ |
1951 | 2963 | ||
1952 | /****************** Bit definition for NVIC_ICPR register *******************/ |
2964 | /****************** Bit definition for NVIC_ICPR register *******************/ |
- | 2965 | #define NVIC_ICPR_CLRPEND_Pos (0U) |
|
- | 2966 | #define NVIC_ICPR_CLRPEND_Msk (0xFFFFFFFFU << NVIC_ICPR_CLRPEND_Pos) /*!< 0xFFFFFFFF */ |
|
1953 | #define NVIC_ICPR_CLRPEND ((uint32_t)0xFFFFFFFF) /*!< Interrupt clear-pending bits */ |
2967 | #define NVIC_ICPR_CLRPEND NVIC_ICPR_CLRPEND_Msk /*!< Interrupt clear-pending bits */ |
1954 | #define NVIC_ICPR_CLRPEND_0 ((uint32_t)0x00000001) /*!< bit 0 */ |
2968 | #define NVIC_ICPR_CLRPEND_0 (0x00000001U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000001 */ |
1955 | #define NVIC_ICPR_CLRPEND_1 ((uint32_t)0x00000002) /*!< bit 1 */ |
2969 | #define NVIC_ICPR_CLRPEND_1 (0x00000002U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000002 */ |
1956 | #define NVIC_ICPR_CLRPEND_2 ((uint32_t)0x00000004) /*!< bit 2 */ |
2970 | #define NVIC_ICPR_CLRPEND_2 (0x00000004U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000004 */ |
1957 | #define NVIC_ICPR_CLRPEND_3 ((uint32_t)0x00000008) /*!< bit 3 */ |
2971 | #define NVIC_ICPR_CLRPEND_3 (0x00000008U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000008 */ |
1958 | #define NVIC_ICPR_CLRPEND_4 ((uint32_t)0x00000010) /*!< bit 4 */ |
2972 | #define NVIC_ICPR_CLRPEND_4 (0x00000010U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000010 */ |
1959 | #define NVIC_ICPR_CLRPEND_5 ((uint32_t)0x00000020) /*!< bit 5 */ |
2973 | #define NVIC_ICPR_CLRPEND_5 (0x00000020U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000020 */ |
1960 | #define NVIC_ICPR_CLRPEND_6 ((uint32_t)0x00000040) /*!< bit 6 */ |
2974 | #define NVIC_ICPR_CLRPEND_6 (0x00000040U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000040 */ |
1961 | #define NVIC_ICPR_CLRPEND_7 ((uint32_t)0x00000080) /*!< bit 7 */ |
2975 | #define NVIC_ICPR_CLRPEND_7 (0x00000080U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000080 */ |
1962 | #define NVIC_ICPR_CLRPEND_8 ((uint32_t)0x00000100) /*!< bit 8 */ |
2976 | #define NVIC_ICPR_CLRPEND_8 (0x00000100U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000100 */ |
1963 | #define NVIC_ICPR_CLRPEND_9 ((uint32_t)0x00000200) /*!< bit 9 */ |
2977 | #define NVIC_ICPR_CLRPEND_9 (0x00000200U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000200 */ |
1964 | #define NVIC_ICPR_CLRPEND_10 ((uint32_t)0x00000400) /*!< bit 10 */ |
2978 | #define NVIC_ICPR_CLRPEND_10 (0x00000400U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000400 */ |
1965 | #define NVIC_ICPR_CLRPEND_11 ((uint32_t)0x00000800) /*!< bit 11 */ |
2979 | #define NVIC_ICPR_CLRPEND_11 (0x00000800U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00000800 */ |
1966 | #define NVIC_ICPR_CLRPEND_12 ((uint32_t)0x00001000) /*!< bit 12 */ |
2980 | #define NVIC_ICPR_CLRPEND_12 (0x00001000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00001000 */ |
1967 | #define NVIC_ICPR_CLRPEND_13 ((uint32_t)0x00002000) /*!< bit 13 */ |
2981 | #define NVIC_ICPR_CLRPEND_13 (0x00002000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00002000 */ |
1968 | #define NVIC_ICPR_CLRPEND_14 ((uint32_t)0x00004000) /*!< bit 14 */ |
2982 | #define NVIC_ICPR_CLRPEND_14 (0x00004000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00004000 */ |
1969 | #define NVIC_ICPR_CLRPEND_15 ((uint32_t)0x00008000) /*!< bit 15 */ |
2983 | #define NVIC_ICPR_CLRPEND_15 (0x00008000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00008000 */ |
1970 | #define NVIC_ICPR_CLRPEND_16 ((uint32_t)0x00010000) /*!< bit 16 */ |
2984 | #define NVIC_ICPR_CLRPEND_16 (0x00010000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00010000 */ |
1971 | #define NVIC_ICPR_CLRPEND_17 ((uint32_t)0x00020000) /*!< bit 17 */ |
2985 | #define NVIC_ICPR_CLRPEND_17 (0x00020000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00020000 */ |
1972 | #define NVIC_ICPR_CLRPEND_18 ((uint32_t)0x00040000) /*!< bit 18 */ |
2986 | #define NVIC_ICPR_CLRPEND_18 (0x00040000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00040000 */ |
1973 | #define NVIC_ICPR_CLRPEND_19 ((uint32_t)0x00080000) /*!< bit 19 */ |
2987 | #define NVIC_ICPR_CLRPEND_19 (0x00080000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00080000 */ |
1974 | #define NVIC_ICPR_CLRPEND_20 ((uint32_t)0x00100000) /*!< bit 20 */ |
2988 | #define NVIC_ICPR_CLRPEND_20 (0x00100000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00100000 */ |
1975 | #define NVIC_ICPR_CLRPEND_21 ((uint32_t)0x00200000) /*!< bit 21 */ |
2989 | #define NVIC_ICPR_CLRPEND_21 (0x00200000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00200000 */ |
1976 | #define NVIC_ICPR_CLRPEND_22 ((uint32_t)0x00400000) /*!< bit 22 */ |
2990 | #define NVIC_ICPR_CLRPEND_22 (0x00400000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00400000 */ |
1977 | #define NVIC_ICPR_CLRPEND_23 ((uint32_t)0x00800000) /*!< bit 23 */ |
2991 | #define NVIC_ICPR_CLRPEND_23 (0x00800000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x00800000 */ |
1978 | #define NVIC_ICPR_CLRPEND_24 ((uint32_t)0x01000000) /*!< bit 24 */ |
2992 | #define NVIC_ICPR_CLRPEND_24 (0x01000000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x01000000 */ |
1979 | #define NVIC_ICPR_CLRPEND_25 ((uint32_t)0x02000000) /*!< bit 25 */ |
2993 | #define NVIC_ICPR_CLRPEND_25 (0x02000000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x02000000 */ |
1980 | #define NVIC_ICPR_CLRPEND_26 ((uint32_t)0x04000000) /*!< bit 26 */ |
2994 | #define NVIC_ICPR_CLRPEND_26 (0x04000000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x04000000 */ |
1981 | #define NVIC_ICPR_CLRPEND_27 ((uint32_t)0x08000000) /*!< bit 27 */ |
2995 | #define NVIC_ICPR_CLRPEND_27 (0x08000000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x08000000 */ |
1982 | #define NVIC_ICPR_CLRPEND_28 ((uint32_t)0x10000000) /*!< bit 28 */ |
2996 | #define NVIC_ICPR_CLRPEND_28 (0x10000000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x10000000 */ |
1983 | #define NVIC_ICPR_CLRPEND_29 ((uint32_t)0x20000000) /*!< bit 29 */ |
2997 | #define NVIC_ICPR_CLRPEND_29 (0x20000000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x20000000 */ |
1984 | #define NVIC_ICPR_CLRPEND_30 ((uint32_t)0x40000000) /*!< bit 30 */ |
2998 | #define NVIC_ICPR_CLRPEND_30 (0x40000000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x40000000 */ |
1985 | #define NVIC_ICPR_CLRPEND_31 ((uint32_t)0x80000000) /*!< bit 31 */ |
2999 | #define NVIC_ICPR_CLRPEND_31 (0x80000000U << NVIC_ICPR_CLRPEND_Pos) /*!< 0x80000000 */ |
1986 | 3000 | ||
1987 | /****************** Bit definition for NVIC_IABR register *******************/ |
3001 | /****************** Bit definition for NVIC_IABR register *******************/ |
- | 3002 | #define NVIC_IABR_ACTIVE_Pos (0U) |
|
- | 3003 | #define NVIC_IABR_ACTIVE_Msk (0xFFFFFFFFU << NVIC_IABR_ACTIVE_Pos) /*!< 0xFFFFFFFF */ |
|
1988 | #define NVIC_IABR_ACTIVE ((uint32_t)0xFFFFFFFF) /*!< Interrupt active flags */ |
3004 | #define NVIC_IABR_ACTIVE NVIC_IABR_ACTIVE_Msk /*!< Interrupt active flags */ |
1989 | #define NVIC_IABR_ACTIVE_0 ((uint32_t)0x00000001) /*!< bit 0 */ |
3005 | #define NVIC_IABR_ACTIVE_0 (0x00000001U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000001 */ |
1990 | #define NVIC_IABR_ACTIVE_1 ((uint32_t)0x00000002) /*!< bit 1 */ |
3006 | #define NVIC_IABR_ACTIVE_1 (0x00000002U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000002 */ |
1991 | #define NVIC_IABR_ACTIVE_2 ((uint32_t)0x00000004) /*!< bit 2 */ |
3007 | #define NVIC_IABR_ACTIVE_2 (0x00000004U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000004 */ |
1992 | #define NVIC_IABR_ACTIVE_3 ((uint32_t)0x00000008) /*!< bit 3 */ |
3008 | #define NVIC_IABR_ACTIVE_3 (0x00000008U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000008 */ |
1993 | #define NVIC_IABR_ACTIVE_4 ((uint32_t)0x00000010) /*!< bit 4 */ |
3009 | #define NVIC_IABR_ACTIVE_4 (0x00000010U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000010 */ |
1994 | #define NVIC_IABR_ACTIVE_5 ((uint32_t)0x00000020) /*!< bit 5 */ |
3010 | #define NVIC_IABR_ACTIVE_5 (0x00000020U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000020 */ |
1995 | #define NVIC_IABR_ACTIVE_6 ((uint32_t)0x00000040) /*!< bit 6 */ |
3011 | #define NVIC_IABR_ACTIVE_6 (0x00000040U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000040 */ |
1996 | #define NVIC_IABR_ACTIVE_7 ((uint32_t)0x00000080) /*!< bit 7 */ |
3012 | #define NVIC_IABR_ACTIVE_7 (0x00000080U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000080 */ |
1997 | #define NVIC_IABR_ACTIVE_8 ((uint32_t)0x00000100) /*!< bit 8 */ |
3013 | #define NVIC_IABR_ACTIVE_8 (0x00000100U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000100 */ |
1998 | #define NVIC_IABR_ACTIVE_9 ((uint32_t)0x00000200) /*!< bit 9 */ |
3014 | #define NVIC_IABR_ACTIVE_9 (0x00000200U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000200 */ |
1999 | #define NVIC_IABR_ACTIVE_10 ((uint32_t)0x00000400) /*!< bit 10 */ |
3015 | #define NVIC_IABR_ACTIVE_10 (0x00000400U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000400 */ |
2000 | #define NVIC_IABR_ACTIVE_11 ((uint32_t)0x00000800) /*!< bit 11 */ |
3016 | #define NVIC_IABR_ACTIVE_11 (0x00000800U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00000800 */ |
2001 | #define NVIC_IABR_ACTIVE_12 ((uint32_t)0x00001000) /*!< bit 12 */ |
3017 | #define NVIC_IABR_ACTIVE_12 (0x00001000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00001000 */ |
2002 | #define NVIC_IABR_ACTIVE_13 ((uint32_t)0x00002000) /*!< bit 13 */ |
3018 | #define NVIC_IABR_ACTIVE_13 (0x00002000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00002000 */ |
2003 | #define NVIC_IABR_ACTIVE_14 ((uint32_t)0x00004000) /*!< bit 14 */ |
3019 | #define NVIC_IABR_ACTIVE_14 (0x00004000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00004000 */ |
2004 | #define NVIC_IABR_ACTIVE_15 ((uint32_t)0x00008000) /*!< bit 15 */ |
3020 | #define NVIC_IABR_ACTIVE_15 (0x00008000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00008000 */ |
2005 | #define NVIC_IABR_ACTIVE_16 ((uint32_t)0x00010000) /*!< bit 16 */ |
3021 | #define NVIC_IABR_ACTIVE_16 (0x00010000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00010000 */ |
2006 | #define NVIC_IABR_ACTIVE_17 ((uint32_t)0x00020000) /*!< bit 17 */ |
3022 | #define NVIC_IABR_ACTIVE_17 (0x00020000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00020000 */ |
2007 | #define NVIC_IABR_ACTIVE_18 ((uint32_t)0x00040000) /*!< bit 18 */ |
3023 | #define NVIC_IABR_ACTIVE_18 (0x00040000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00040000 */ |
2008 | #define NVIC_IABR_ACTIVE_19 ((uint32_t)0x00080000) /*!< bit 19 */ |
3024 | #define NVIC_IABR_ACTIVE_19 (0x00080000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00080000 */ |
2009 | #define NVIC_IABR_ACTIVE_20 ((uint32_t)0x00100000) /*!< bit 20 */ |
3025 | #define NVIC_IABR_ACTIVE_20 (0x00100000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00100000 */ |
2010 | #define NVIC_IABR_ACTIVE_21 ((uint32_t)0x00200000) /*!< bit 21 */ |
3026 | #define NVIC_IABR_ACTIVE_21 (0x00200000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00200000 */ |
2011 | #define NVIC_IABR_ACTIVE_22 ((uint32_t)0x00400000) /*!< bit 22 */ |
3027 | #define NVIC_IABR_ACTIVE_22 (0x00400000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00400000 */ |
2012 | #define NVIC_IABR_ACTIVE_23 ((uint32_t)0x00800000) /*!< bit 23 */ |
3028 | #define NVIC_IABR_ACTIVE_23 (0x00800000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x00800000 */ |
2013 | #define NVIC_IABR_ACTIVE_24 ((uint32_t)0x01000000) /*!< bit 24 */ |
3029 | #define NVIC_IABR_ACTIVE_24 (0x01000000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x01000000 */ |
2014 | #define NVIC_IABR_ACTIVE_25 ((uint32_t)0x02000000) /*!< bit 25 */ |
3030 | #define NVIC_IABR_ACTIVE_25 (0x02000000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x02000000 */ |
2015 | #define NVIC_IABR_ACTIVE_26 ((uint32_t)0x04000000) /*!< bit 26 */ |
3031 | #define NVIC_IABR_ACTIVE_26 (0x04000000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x04000000 */ |
2016 | #define NVIC_IABR_ACTIVE_27 ((uint32_t)0x08000000) /*!< bit 27 */ |
3032 | #define NVIC_IABR_ACTIVE_27 (0x08000000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x08000000 */ |
2017 | #define NVIC_IABR_ACTIVE_28 ((uint32_t)0x10000000) /*!< bit 28 */ |
3033 | #define NVIC_IABR_ACTIVE_28 (0x10000000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x10000000 */ |
2018 | #define NVIC_IABR_ACTIVE_29 ((uint32_t)0x20000000) /*!< bit 29 */ |
3034 | #define NVIC_IABR_ACTIVE_29 (0x20000000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x20000000 */ |
2019 | #define NVIC_IABR_ACTIVE_30 ((uint32_t)0x40000000) /*!< bit 30 */ |
3035 | #define NVIC_IABR_ACTIVE_30 (0x40000000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x40000000 */ |
2020 | #define NVIC_IABR_ACTIVE_31 ((uint32_t)0x80000000) /*!< bit 31 */ |
3036 | #define NVIC_IABR_ACTIVE_31 (0x80000000U << NVIC_IABR_ACTIVE_Pos) /*!< 0x80000000 */ |
2021 | 3037 | ||
2022 | /****************** Bit definition for NVIC_PRI0 register *******************/ |
3038 | /****************** Bit definition for NVIC_PRI0 register *******************/ |
2023 | #define NVIC_IPR0_PRI_0 ((uint32_t)0x000000FF) /*!< Priority of interrupt 0 */ |
3039 | #define NVIC_IPR0_PRI_0 ((uint32_t)0x000000FF) /*!< Priority of interrupt 0 */ |
2024 | #define NVIC_IPR0_PRI_1 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 1 */ |
3040 | #define NVIC_IPR0_PRI_1 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 1 */ |
2025 | #define NVIC_IPR0_PRI_2 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 2 */ |
3041 | #define NVIC_IPR0_PRI_2 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 2 */ |
2026 | #define NVIC_IPR0_PRI_3 ((uint32_t)0xFF000000) /*!< Priority of interrupt 3 */ |
3042 | #define NVIC_IPR0_PRI_3 ((uint32_t)0xFF000000) /*!< Priority of interrupt 3 */ |
2027 | 3043 | ||
2028 | /****************** Bit definition for NVIC_PRI1 register *******************/ |
3044 | /****************** Bit definition for NVIC_PRI1 register *******************/ |
2029 | #define NVIC_IPR1_PRI_4 ((uint32_t)0x000000FF) /*!< Priority of interrupt 4 */ |
3045 | #define NVIC_IPR1_PRI_4 ((uint32_t)0x000000FF) /*!< Priority of interrupt 4 */ |
2030 | #define NVIC_IPR1_PRI_5 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 5 */ |
3046 | #define NVIC_IPR1_PRI_5 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 5 */ |
2031 | #define NVIC_IPR1_PRI_6 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 6 */ |
3047 | #define NVIC_IPR1_PRI_6 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 6 */ |
2032 | #define NVIC_IPR1_PRI_7 ((uint32_t)0xFF000000) /*!< Priority of interrupt 7 */ |
3048 | #define NVIC_IPR1_PRI_7 ((uint32_t)0xFF000000) /*!< Priority of interrupt 7 */ |
2033 | 3049 | ||
2034 | /****************** Bit definition for NVIC_PRI2 register *******************/ |
3050 | /****************** Bit definition for NVIC_PRI2 register *******************/ |
2035 | #define NVIC_IPR2_PRI_8 ((uint32_t)0x000000FF) /*!< Priority of interrupt 8 */ |
3051 | #define NVIC_IPR2_PRI_8 ((uint32_t)0x000000FF) /*!< Priority of interrupt 8 */ |
2036 | #define NVIC_IPR2_PRI_9 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 9 */ |
3052 | #define NVIC_IPR2_PRI_9 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 9 */ |
2037 | #define NVIC_IPR2_PRI_10 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 10 */ |
3053 | #define NVIC_IPR2_PRI_10 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 10 */ |
2038 | #define NVIC_IPR2_PRI_11 ((uint32_t)0xFF000000) /*!< Priority of interrupt 11 */ |
3054 | #define NVIC_IPR2_PRI_11 ((uint32_t)0xFF000000) /*!< Priority of interrupt 11 */ |
2039 | 3055 | ||
2040 | /****************** Bit definition for NVIC_PRI3 register *******************/ |
3056 | /****************** Bit definition for NVIC_PRI3 register *******************/ |
2041 | #define NVIC_IPR3_PRI_12 ((uint32_t)0x000000FF) /*!< Priority of interrupt 12 */ |
3057 | #define NVIC_IPR3_PRI_12 ((uint32_t)0x000000FF) /*!< Priority of interrupt 12 */ |
2042 | #define NVIC_IPR3_PRI_13 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 13 */ |
3058 | #define NVIC_IPR3_PRI_13 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 13 */ |
2043 | #define NVIC_IPR3_PRI_14 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 14 */ |
3059 | #define NVIC_IPR3_PRI_14 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 14 */ |
2044 | #define NVIC_IPR3_PRI_15 ((uint32_t)0xFF000000) /*!< Priority of interrupt 15 */ |
3060 | #define NVIC_IPR3_PRI_15 ((uint32_t)0xFF000000) /*!< Priority of interrupt 15 */ |
2045 | 3061 | ||
2046 | /****************** Bit definition for NVIC_PRI4 register *******************/ |
3062 | /****************** Bit definition for NVIC_PRI4 register *******************/ |
2047 | #define NVIC_IPR4_PRI_16 ((uint32_t)0x000000FF) /*!< Priority of interrupt 16 */ |
3063 | #define NVIC_IPR4_PRI_16 ((uint32_t)0x000000FF) /*!< Priority of interrupt 16 */ |
2048 | #define NVIC_IPR4_PRI_17 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 17 */ |
3064 | #define NVIC_IPR4_PRI_17 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 17 */ |
2049 | #define NVIC_IPR4_PRI_18 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 18 */ |
3065 | #define NVIC_IPR4_PRI_18 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 18 */ |
2050 | #define NVIC_IPR4_PRI_19 ((uint32_t)0xFF000000) /*!< Priority of interrupt 19 */ |
3066 | #define NVIC_IPR4_PRI_19 ((uint32_t)0xFF000000) /*!< Priority of interrupt 19 */ |
2051 | 3067 | ||
2052 | /****************** Bit definition for NVIC_PRI5 register *******************/ |
3068 | /****************** Bit definition for NVIC_PRI5 register *******************/ |
2053 | #define NVIC_IPR5_PRI_20 ((uint32_t)0x000000FF) /*!< Priority of interrupt 20 */ |
3069 | #define NVIC_IPR5_PRI_20 ((uint32_t)0x000000FF) /*!< Priority of interrupt 20 */ |
2054 | #define NVIC_IPR5_PRI_21 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 21 */ |
3070 | #define NVIC_IPR5_PRI_21 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 21 */ |
2055 | #define NVIC_IPR5_PRI_22 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 22 */ |
3071 | #define NVIC_IPR5_PRI_22 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 22 */ |
2056 | #define NVIC_IPR5_PRI_23 ((uint32_t)0xFF000000) /*!< Priority of interrupt 23 */ |
3072 | #define NVIC_IPR5_PRI_23 ((uint32_t)0xFF000000) /*!< Priority of interrupt 23 */ |
2057 | 3073 | ||
2058 | /****************** Bit definition for NVIC_PRI6 register *******************/ |
3074 | /****************** Bit definition for NVIC_PRI6 register *******************/ |
2059 | #define NVIC_IPR6_PRI_24 ((uint32_t)0x000000FF) /*!< Priority of interrupt 24 */ |
3075 | #define NVIC_IPR6_PRI_24 ((uint32_t)0x000000FF) /*!< Priority of interrupt 24 */ |
2060 | #define NVIC_IPR6_PRI_25 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 25 */ |
3076 | #define NVIC_IPR6_PRI_25 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 25 */ |
2061 | #define NVIC_IPR6_PRI_26 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 26 */ |
3077 | #define NVIC_IPR6_PRI_26 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 26 */ |
2062 | #define NVIC_IPR6_PRI_27 ((uint32_t)0xFF000000) /*!< Priority of interrupt 27 */ |
3078 | #define NVIC_IPR6_PRI_27 ((uint32_t)0xFF000000) /*!< Priority of interrupt 27 */ |
2063 | 3079 | ||
2064 | /****************** Bit definition for NVIC_PRI7 register *******************/ |
3080 | /****************** Bit definition for NVIC_PRI7 register *******************/ |
2065 | #define NVIC_IPR7_PRI_28 ((uint32_t)0x000000FF) /*!< Priority of interrupt 28 */ |
3081 | #define NVIC_IPR7_PRI_28 ((uint32_t)0x000000FF) /*!< Priority of interrupt 28 */ |
2066 | #define NVIC_IPR7_PRI_29 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 29 */ |
3082 | #define NVIC_IPR7_PRI_29 ((uint32_t)0x0000FF00) /*!< Priority of interrupt 29 */ |
2067 | #define NVIC_IPR7_PRI_30 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 30 */ |
3083 | #define NVIC_IPR7_PRI_30 ((uint32_t)0x00FF0000) /*!< Priority of interrupt 30 */ |
2068 | #define NVIC_IPR7_PRI_31 ((uint32_t)0xFF000000) /*!< Priority of interrupt 31 */ |
3084 | #define NVIC_IPR7_PRI_31 ((uint32_t)0xFF000000) /*!< Priority of interrupt 31 */ |
2069 | 3085 | ||
2070 | /****************** Bit definition for SCB_CPUID register *******************/ |
3086 | /****************** Bit definition for SCB_CPUID register *******************/ |
2071 | #define SCB_CPUID_REVISION ((uint32_t)0x0000000F) /*!< Implementation defined revision number */ |
3087 | #define SCB_CPUID_REVISION ((uint32_t)0x0000000F) /*!< Implementation defined revision number */ |
2072 | #define SCB_CPUID_PARTNO ((uint32_t)0x0000FFF0) /*!< Number of processor within family */ |
3088 | #define SCB_CPUID_PARTNO ((uint32_t)0x0000FFF0) /*!< Number of processor within family */ |
2073 | #define SCB_CPUID_Constant ((uint32_t)0x000F0000) /*!< Reads as 0x0F */ |
3089 | #define SCB_CPUID_Constant ((uint32_t)0x000F0000) /*!< Reads as 0x0F */ |
2074 | #define SCB_CPUID_VARIANT ((uint32_t)0x00F00000) /*!< Implementation defined variant number */ |
3090 | #define SCB_CPUID_VARIANT ((uint32_t)0x00F00000) /*!< Implementation defined variant number */ |
2075 | #define SCB_CPUID_IMPLEMENTER ((uint32_t)0xFF000000) /*!< Implementer code. ARM is 0x41 */ |
3091 | #define SCB_CPUID_IMPLEMENTER ((uint32_t)0xFF000000) /*!< Implementer code. ARM is 0x41 */ |
2076 | 3092 | ||
2077 | /******************* Bit definition for SCB_ICSR register *******************/ |
3093 | /******************* Bit definition for SCB_ICSR register *******************/ |
2078 | #define SCB_ICSR_VECTACTIVE ((uint32_t)0x000001FF) /*!< Active ISR number field */ |
3094 | #define SCB_ICSR_VECTACTIVE ((uint32_t)0x000001FF) /*!< Active ISR number field */ |
2079 | #define SCB_ICSR_RETTOBASE ((uint32_t)0x00000800) /*!< All active exceptions minus the IPSR_current_exception yields the empty set */ |
3095 | #define SCB_ICSR_RETTOBASE ((uint32_t)0x00000800) /*!< All active exceptions minus the IPSR_current_exception yields the empty set */ |
2080 | #define SCB_ICSR_VECTPENDING ((uint32_t)0x003FF000) /*!< Pending ISR number field */ |
3096 | #define SCB_ICSR_VECTPENDING ((uint32_t)0x003FF000) /*!< Pending ISR number field */ |
2081 | #define SCB_ICSR_ISRPENDING ((uint32_t)0x00400000) /*!< Interrupt pending flag */ |
3097 | #define SCB_ICSR_ISRPENDING ((uint32_t)0x00400000) /*!< Interrupt pending flag */ |
2082 | #define SCB_ICSR_ISRPREEMPT ((uint32_t)0x00800000) /*!< It indicates that a pending interrupt becomes active in the next running cycle */ |
3098 | #define SCB_ICSR_ISRPREEMPT ((uint32_t)0x00800000) /*!< It indicates that a pending interrupt becomes active in the next running cycle */ |
2083 | #define SCB_ICSR_PENDSTCLR ((uint32_t)0x02000000) /*!< Clear pending SysTick bit */ |
3099 | #define SCB_ICSR_PENDSTCLR ((uint32_t)0x02000000) /*!< Clear pending SysTick bit */ |
2084 | #define SCB_ICSR_PENDSTSET ((uint32_t)0x04000000) /*!< Set pending SysTick bit */ |
3100 | #define SCB_ICSR_PENDSTSET ((uint32_t)0x04000000) /*!< Set pending SysTick bit */ |
2085 | #define SCB_ICSR_PENDSVCLR ((uint32_t)0x08000000) /*!< Clear pending pendSV bit */ |
3101 | #define SCB_ICSR_PENDSVCLR ((uint32_t)0x08000000) /*!< Clear pending pendSV bit */ |
2086 | #define SCB_ICSR_PENDSVSET ((uint32_t)0x10000000) /*!< Set pending pendSV bit */ |
3102 | #define SCB_ICSR_PENDSVSET ((uint32_t)0x10000000) /*!< Set pending pendSV bit */ |
2087 | #define SCB_ICSR_NMIPENDSET ((uint32_t)0x80000000) /*!< Set pending NMI bit */ |
3103 | #define SCB_ICSR_NMIPENDSET ((uint32_t)0x80000000) /*!< Set pending NMI bit */ |
2088 | 3104 | ||
2089 | /******************* Bit definition for SCB_VTOR register *******************/ |
3105 | /******************* Bit definition for SCB_VTOR register *******************/ |
2090 | #define SCB_VTOR_TBLOFF ((uint32_t)0x1FFFFF80) /*!< Vector table base offset field */ |
3106 | #define SCB_VTOR_TBLOFF ((uint32_t)0x1FFFFF80) /*!< Vector table base offset field */ |
2091 | #define SCB_VTOR_TBLBASE ((uint32_t)0x20000000) /*!< Table base in code(0) or RAM(1) */ |
3107 | #define SCB_VTOR_TBLBASE ((uint32_t)0x20000000) /*!< Table base in code(0) or RAM(1) */ |
2092 | 3108 | ||
2093 | /*!<***************** Bit definition for SCB_AIRCR register *******************/ |
3109 | /*!<***************** Bit definition for SCB_AIRCR register *******************/ |
2094 | #define SCB_AIRCR_VECTRESET ((uint32_t)0x00000001) /*!< System Reset bit */ |
3110 | #define SCB_AIRCR_VECTRESET ((uint32_t)0x00000001) /*!< System Reset bit */ |
2095 | #define SCB_AIRCR_VECTCLRACTIVE ((uint32_t)0x00000002) /*!< Clear active vector bit */ |
3111 | #define SCB_AIRCR_VECTCLRACTIVE ((uint32_t)0x00000002) /*!< Clear active vector bit */ |
2096 | #define SCB_AIRCR_SYSRESETREQ ((uint32_t)0x00000004) /*!< Requests chip control logic to generate a reset */ |
3112 | #define SCB_AIRCR_SYSRESETREQ ((uint32_t)0x00000004) /*!< Requests chip control logic to generate a reset */ |
2097 | 3113 | ||
2098 | #define SCB_AIRCR_PRIGROUP ((uint32_t)0x00000700) /*!< PRIGROUP[2:0] bits (Priority group) */ |
3114 | #define SCB_AIRCR_PRIGROUP ((uint32_t)0x00000700) /*!< PRIGROUP[2:0] bits (Priority group) */ |
2099 | #define SCB_AIRCR_PRIGROUP_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
3115 | #define SCB_AIRCR_PRIGROUP_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
2100 | #define SCB_AIRCR_PRIGROUP_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
3116 | #define SCB_AIRCR_PRIGROUP_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
2101 | #define SCB_AIRCR_PRIGROUP_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
3117 | #define SCB_AIRCR_PRIGROUP_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
2102 | 3118 | ||
2103 | /* prority group configuration */ |
3119 | /* prority group configuration */ |
2104 | #define SCB_AIRCR_PRIGROUP0 ((uint32_t)0x00000000) /*!< Priority group=0 (7 bits of pre-emption priority, 1 bit of subpriority) */ |
3120 | #define SCB_AIRCR_PRIGROUP0 ((uint32_t)0x00000000) /*!< Priority group=0 (7 bits of pre-emption priority, 1 bit of subpriority) */ |
2105 | #define SCB_AIRCR_PRIGROUP1 ((uint32_t)0x00000100) /*!< Priority group=1 (6 bits of pre-emption priority, 2 bits of subpriority) */ |
3121 | #define SCB_AIRCR_PRIGROUP1 ((uint32_t)0x00000100) /*!< Priority group=1 (6 bits of pre-emption priority, 2 bits of subpriority) */ |
2106 | #define SCB_AIRCR_PRIGROUP2 ((uint32_t)0x00000200) /*!< Priority group=2 (5 bits of pre-emption priority, 3 bits of subpriority) */ |
3122 | #define SCB_AIRCR_PRIGROUP2 ((uint32_t)0x00000200) /*!< Priority group=2 (5 bits of pre-emption priority, 3 bits of subpriority) */ |
2107 | #define SCB_AIRCR_PRIGROUP3 ((uint32_t)0x00000300) /*!< Priority group=3 (4 bits of pre-emption priority, 4 bits of subpriority) */ |
3123 | #define SCB_AIRCR_PRIGROUP3 ((uint32_t)0x00000300) /*!< Priority group=3 (4 bits of pre-emption priority, 4 bits of subpriority) */ |
2108 | #define SCB_AIRCR_PRIGROUP4 ((uint32_t)0x00000400) /*!< Priority group=4 (3 bits of pre-emption priority, 5 bits of subpriority) */ |
3124 | #define SCB_AIRCR_PRIGROUP4 ((uint32_t)0x00000400) /*!< Priority group=4 (3 bits of pre-emption priority, 5 bits of subpriority) */ |
2109 | #define SCB_AIRCR_PRIGROUP5 ((uint32_t)0x00000500) /*!< Priority group=5 (2 bits of pre-emption priority, 6 bits of subpriority) */ |
3125 | #define SCB_AIRCR_PRIGROUP5 ((uint32_t)0x00000500) /*!< Priority group=5 (2 bits of pre-emption priority, 6 bits of subpriority) */ |
2110 | #define SCB_AIRCR_PRIGROUP6 ((uint32_t)0x00000600) /*!< Priority group=6 (1 bit of pre-emption priority, 7 bits of subpriority) */ |
3126 | #define SCB_AIRCR_PRIGROUP6 ((uint32_t)0x00000600) /*!< Priority group=6 (1 bit of pre-emption priority, 7 bits of subpriority) */ |
2111 | #define SCB_AIRCR_PRIGROUP7 ((uint32_t)0x00000700) /*!< Priority group=7 (no pre-emption priority, 8 bits of subpriority) */ |
3127 | #define SCB_AIRCR_PRIGROUP7 ((uint32_t)0x00000700) /*!< Priority group=7 (no pre-emption priority, 8 bits of subpriority) */ |
2112 | 3128 | ||
2113 | #define SCB_AIRCR_ENDIANESS ((uint32_t)0x00008000) /*!< Data endianness bit */ |
3129 | #define SCB_AIRCR_ENDIANESS ((uint32_t)0x00008000) /*!< Data endianness bit */ |
2114 | #define SCB_AIRCR_VECTKEY ((uint32_t)0xFFFF0000) /*!< Register key (VECTKEY) - Reads as 0xFA05 (VECTKEYSTAT) */ |
3130 | #define SCB_AIRCR_VECTKEY ((uint32_t)0xFFFF0000) /*!< Register key (VECTKEY) - Reads as 0xFA05 (VECTKEYSTAT) */ |
2115 | 3131 | ||
2116 | /******************* Bit definition for SCB_SCR register ********************/ |
3132 | /******************* Bit definition for SCB_SCR register ********************/ |
2117 | #define SCB_SCR_SLEEPONEXIT ((uint32_t)0x00000002) /*!< Sleep on exit bit */ |
3133 | #define SCB_SCR_SLEEPONEXIT ((uint32_t)0x00000002) /*!< Sleep on exit bit */ |
2118 | #define SCB_SCR_SLEEPDEEP ((uint32_t)0x00000004) /*!< Sleep deep bit */ |
3134 | #define SCB_SCR_SLEEPDEEP ((uint32_t)0x00000004) /*!< Sleep deep bit */ |
2119 | #define SCB_SCR_SEVONPEND ((uint32_t)0x00000010) /*!< Wake up from WFE */ |
3135 | #define SCB_SCR_SEVONPEND ((uint32_t)0x00000010) /*!< Wake up from WFE */ |
2120 | 3136 | ||
2121 | /******************** Bit definition for SCB_CCR register *******************/ |
3137 | /******************** Bit definition for SCB_CCR register *******************/ |
2122 | #define SCB_CCR_NONBASETHRDENA ((uint32_t)0x00000001) /*!< Thread mode can be entered from any level in Handler mode by controlled return value */ |
3138 | #define SCB_CCR_NONBASETHRDENA ((uint32_t)0x00000001) /*!< Thread mode can be entered from any level in Handler mode by controlled return value */ |
2123 | #define SCB_CCR_USERSETMPEND ((uint32_t)0x00000002) /*!< Enables user code to write the Software Trigger Interrupt register to trigger (pend) a Main exception */ |
3139 | #define SCB_CCR_USERSETMPEND ((uint32_t)0x00000002) /*!< Enables user code to write the Software Trigger Interrupt register to trigger (pend) a Main exception */ |
2124 | #define SCB_CCR_UNALIGN_TRP ((uint32_t)0x00000008) /*!< Trap for unaligned access */ |
3140 | #define SCB_CCR_UNALIGN_TRP ((uint32_t)0x00000008) /*!< Trap for unaligned access */ |
2125 | #define SCB_CCR_DIV_0_TRP ((uint32_t)0x00000010) /*!< Trap on Divide by 0 */ |
3141 | #define SCB_CCR_DIV_0_TRP ((uint32_t)0x00000010) /*!< Trap on Divide by 0 */ |
2126 | #define SCB_CCR_BFHFNMIGN ((uint32_t)0x00000100) /*!< Handlers running at priority -1 and -2 */ |
3142 | #define SCB_CCR_BFHFNMIGN ((uint32_t)0x00000100) /*!< Handlers running at priority -1 and -2 */ |
2127 | #define SCB_CCR_STKALIGN ((uint32_t)0x00000200) /*!< On exception entry, the SP used prior to the exception is adjusted to be 8-byte aligned */ |
3143 | #define SCB_CCR_STKALIGN ((uint32_t)0x00000200) /*!< On exception entry, the SP used prior to the exception is adjusted to be 8-byte aligned */ |
2128 | 3144 | ||
2129 | /******************* Bit definition for SCB_SHPR register ********************/ |
3145 | /******************* Bit definition for SCB_SHPR register ********************/ |
- | 3146 | #define SCB_SHPR_PRI_N_Pos (0U) |
|
- | 3147 | #define SCB_SHPR_PRI_N_Msk (0xFFU << SCB_SHPR_PRI_N_Pos) /*!< 0x000000FF */ |
|
2130 | #define SCB_SHPR_PRI_N ((uint32_t)0x000000FF) /*!< Priority of system handler 4,8, and 12. Mem Manage, reserved and Debug Monitor */ |
3148 | #define SCB_SHPR_PRI_N SCB_SHPR_PRI_N_Msk /*!< Priority of system handler 4,8, and 12. Mem Manage, reserved and Debug Monitor */ |
- | 3149 | #define SCB_SHPR_PRI_N1_Pos (8U) |
|
- | 3150 | #define SCB_SHPR_PRI_N1_Msk (0xFFU << SCB_SHPR_PRI_N1_Pos) /*!< 0x0000FF00 */ |
|
2131 | #define SCB_SHPR_PRI_N1 ((uint32_t)0x0000FF00) /*!< Priority of system handler 5,9, and 13. Bus Fault, reserved and reserved */ |
3151 | #define SCB_SHPR_PRI_N1 SCB_SHPR_PRI_N1_Msk /*!< Priority of system handler 5,9, and 13. Bus Fault, reserved and reserved */ |
- | 3152 | #define SCB_SHPR_PRI_N2_Pos (16U) |
|
- | 3153 | #define SCB_SHPR_PRI_N2_Msk (0xFFU << SCB_SHPR_PRI_N2_Pos) /*!< 0x00FF0000 */ |
|
2132 | #define SCB_SHPR_PRI_N2 ((uint32_t)0x00FF0000) /*!< Priority of system handler 6,10, and 14. Usage Fault, reserved and PendSV */ |
3154 | #define SCB_SHPR_PRI_N2 SCB_SHPR_PRI_N2_Msk /*!< Priority of system handler 6,10, and 14. Usage Fault, reserved and PendSV */ |
- | 3155 | #define SCB_SHPR_PRI_N3_Pos (24U) |
|
- | 3156 | #define SCB_SHPR_PRI_N3_Msk (0xFFU << SCB_SHPR_PRI_N3_Pos) /*!< 0xFF000000 */ |
|
2133 | #define SCB_SHPR_PRI_N3 ((uint32_t)0xFF000000) /*!< Priority of system handler 7,11, and 15. Reserved, SVCall and SysTick */ |
3157 | #define SCB_SHPR_PRI_N3 SCB_SHPR_PRI_N3_Msk /*!< Priority of system handler 7,11, and 15. Reserved, SVCall and SysTick */ |
2134 | 3158 | ||
2135 | /****************** Bit definition for SCB_SHCSR register *******************/ |
3159 | /****************** Bit definition for SCB_SHCSR register *******************/ |
2136 | #define SCB_SHCSR_MEMFAULTACT ((uint32_t)0x00000001) /*!< MemManage is active */ |
3160 | #define SCB_SHCSR_MEMFAULTACT ((uint32_t)0x00000001) /*!< MemManage is active */ |
2137 | #define SCB_SHCSR_BUSFAULTACT ((uint32_t)0x00000002) /*!< BusFault is active */ |
3161 | #define SCB_SHCSR_BUSFAULTACT ((uint32_t)0x00000002) /*!< BusFault is active */ |
2138 | #define SCB_SHCSR_USGFAULTACT ((uint32_t)0x00000008) /*!< UsageFault is active */ |
3162 | #define SCB_SHCSR_USGFAULTACT ((uint32_t)0x00000008) /*!< UsageFault is active */ |
2139 | #define SCB_SHCSR_SVCALLACT ((uint32_t)0x00000080) /*!< SVCall is active */ |
3163 | #define SCB_SHCSR_SVCALLACT ((uint32_t)0x00000080) /*!< SVCall is active */ |
2140 | #define SCB_SHCSR_MONITORACT ((uint32_t)0x00000100) /*!< Monitor is active */ |
3164 | #define SCB_SHCSR_MONITORACT ((uint32_t)0x00000100) /*!< Monitor is active */ |
2141 | #define SCB_SHCSR_PENDSVACT ((uint32_t)0x00000400) /*!< PendSV is active */ |
3165 | #define SCB_SHCSR_PENDSVACT ((uint32_t)0x00000400) /*!< PendSV is active */ |
2142 | #define SCB_SHCSR_SYSTICKACT ((uint32_t)0x00000800) /*!< SysTick is active */ |
3166 | #define SCB_SHCSR_SYSTICKACT ((uint32_t)0x00000800) /*!< SysTick is active */ |
2143 | #define SCB_SHCSR_USGFAULTPENDED ((uint32_t)0x00001000) /*!< Usage Fault is pended */ |
3167 | #define SCB_SHCSR_USGFAULTPENDED ((uint32_t)0x00001000) /*!< Usage Fault is pended */ |
2144 | #define SCB_SHCSR_MEMFAULTPENDED ((uint32_t)0x00002000) /*!< MemManage is pended */ |
3168 | #define SCB_SHCSR_MEMFAULTPENDED ((uint32_t)0x00002000) /*!< MemManage is pended */ |
2145 | #define SCB_SHCSR_BUSFAULTPENDED ((uint32_t)0x00004000) /*!< Bus Fault is pended */ |
3169 | #define SCB_SHCSR_BUSFAULTPENDED ((uint32_t)0x00004000) /*!< Bus Fault is pended */ |
2146 | #define SCB_SHCSR_SVCALLPENDED ((uint32_t)0x00008000) /*!< SVCall is pended */ |
3170 | #define SCB_SHCSR_SVCALLPENDED ((uint32_t)0x00008000) /*!< SVCall is pended */ |
2147 | #define SCB_SHCSR_MEMFAULTENA ((uint32_t)0x00010000) /*!< MemManage enable */ |
3171 | #define SCB_SHCSR_MEMFAULTENA ((uint32_t)0x00010000) /*!< MemManage enable */ |
2148 | #define SCB_SHCSR_BUSFAULTENA ((uint32_t)0x00020000) /*!< Bus Fault enable */ |
3172 | #define SCB_SHCSR_BUSFAULTENA ((uint32_t)0x00020000) /*!< Bus Fault enable */ |
2149 | #define SCB_SHCSR_USGFAULTENA ((uint32_t)0x00040000) /*!< UsageFault enable */ |
3173 | #define SCB_SHCSR_USGFAULTENA ((uint32_t)0x00040000) /*!< UsageFault enable */ |
2150 | 3174 | ||
2151 | /******************* Bit definition for SCB_CFSR register *******************/ |
3175 | /******************* Bit definition for SCB_CFSR register *******************/ |
2152 | /*!< MFSR */ |
3176 | /*!< MFSR */ |
- | 3177 | #define SCB_CFSR_IACCVIOL_Pos (0U) |
|
- | 3178 | #define SCB_CFSR_IACCVIOL_Msk (0x1U << SCB_CFSR_IACCVIOL_Pos) /*!< 0x00000001 */ |
|
2153 | #define SCB_CFSR_IACCVIOL ((uint32_t)0x00000001) /*!< Instruction access violation */ |
3179 | #define SCB_CFSR_IACCVIOL SCB_CFSR_IACCVIOL_Msk /*!< Instruction access violation */ |
- | 3180 | #define SCB_CFSR_DACCVIOL_Pos (1U) |
|
- | 3181 | #define SCB_CFSR_DACCVIOL_Msk (0x1U << SCB_CFSR_DACCVIOL_Pos) /*!< 0x00000002 */ |
|
2154 | #define SCB_CFSR_DACCVIOL ((uint32_t)0x00000002) /*!< Data access violation */ |
3182 | #define SCB_CFSR_DACCVIOL SCB_CFSR_DACCVIOL_Msk /*!< Data access violation */ |
- | 3183 | #define SCB_CFSR_MUNSTKERR_Pos (3U) |
|
- | 3184 | #define SCB_CFSR_MUNSTKERR_Msk (0x1U << SCB_CFSR_MUNSTKERR_Pos) /*!< 0x00000008 */ |
|
2155 | #define SCB_CFSR_MUNSTKERR ((uint32_t)0x00000008) /*!< Unstacking error */ |
3185 | #define SCB_CFSR_MUNSTKERR SCB_CFSR_MUNSTKERR_Msk /*!< Unstacking error */ |
- | 3186 | #define SCB_CFSR_MSTKERR_Pos (4U) |
|
- | 3187 | #define SCB_CFSR_MSTKERR_Msk (0x1U << SCB_CFSR_MSTKERR_Pos) /*!< 0x00000010 */ |
|
2156 | #define SCB_CFSR_MSTKERR ((uint32_t)0x00000010) /*!< Stacking error */ |
3188 | #define SCB_CFSR_MSTKERR SCB_CFSR_MSTKERR_Msk /*!< Stacking error */ |
- | 3189 | #define SCB_CFSR_MMARVALID_Pos (7U) |
|
- | 3190 | #define SCB_CFSR_MMARVALID_Msk (0x1U << SCB_CFSR_MMARVALID_Pos) /*!< 0x00000080 */ |
|
2157 | #define SCB_CFSR_MMARVALID ((uint32_t)0x00000080) /*!< Memory Manage Address Register address valid flag */ |
3191 | #define SCB_CFSR_MMARVALID SCB_CFSR_MMARVALID_Msk /*!< Memory Manage Address Register address valid flag */ |
2158 | /*!< BFSR */ |
3192 | /*!< BFSR */ |
- | 3193 | #define SCB_CFSR_IBUSERR_Pos (8U) |
|
- | 3194 | #define SCB_CFSR_IBUSERR_Msk (0x1U << SCB_CFSR_IBUSERR_Pos) /*!< 0x00000100 */ |
|
2159 | #define SCB_CFSR_IBUSERR ((uint32_t)0x00000100) /*!< Instruction bus error flag */ |
3195 | #define SCB_CFSR_IBUSERR SCB_CFSR_IBUSERR_Msk /*!< Instruction bus error flag */ |
- | 3196 | #define SCB_CFSR_PRECISERR_Pos (9U) |
|
- | 3197 | #define SCB_CFSR_PRECISERR_Msk (0x1U << SCB_CFSR_PRECISERR_Pos) /*!< 0x00000200 */ |
|
2160 | #define SCB_CFSR_PRECISERR ((uint32_t)0x00000200) /*!< Precise data bus error */ |
3198 | #define SCB_CFSR_PRECISERR SCB_CFSR_PRECISERR_Msk /*!< Precise data bus error */ |
- | 3199 | #define SCB_CFSR_IMPRECISERR_Pos (10U) |
|
- | 3200 | #define SCB_CFSR_IMPRECISERR_Msk (0x1U << SCB_CFSR_IMPRECISERR_Pos) /*!< 0x00000400 */ |
|
2161 | #define SCB_CFSR_IMPRECISERR ((uint32_t)0x00000400) /*!< Imprecise data bus error */ |
3201 | #define SCB_CFSR_IMPRECISERR SCB_CFSR_IMPRECISERR_Msk /*!< Imprecise data bus error */ |
- | 3202 | #define SCB_CFSR_UNSTKERR_Pos (11U) |
|
- | 3203 | #define SCB_CFSR_UNSTKERR_Msk (0x1U << SCB_CFSR_UNSTKERR_Pos) /*!< 0x00000800 */ |
|
2162 | #define SCB_CFSR_UNSTKERR ((uint32_t)0x00000800) /*!< Unstacking error */ |
3204 | #define SCB_CFSR_UNSTKERR SCB_CFSR_UNSTKERR_Msk /*!< Unstacking error */ |
- | 3205 | #define SCB_CFSR_STKERR_Pos (12U) |
|
- | 3206 | #define SCB_CFSR_STKERR_Msk (0x1U << SCB_CFSR_STKERR_Pos) /*!< 0x00001000 */ |
|
2163 | #define SCB_CFSR_STKERR ((uint32_t)0x00001000) /*!< Stacking error */ |
3207 | #define SCB_CFSR_STKERR SCB_CFSR_STKERR_Msk /*!< Stacking error */ |
- | 3208 | #define SCB_CFSR_BFARVALID_Pos (15U) |
|
- | 3209 | #define SCB_CFSR_BFARVALID_Msk (0x1U << SCB_CFSR_BFARVALID_Pos) /*!< 0x00008000 */ |
|
2164 | #define SCB_CFSR_BFARVALID ((uint32_t)0x00008000) /*!< Bus Fault Address Register address valid flag */ |
3210 | #define SCB_CFSR_BFARVALID SCB_CFSR_BFARVALID_Msk /*!< Bus Fault Address Register address valid flag */ |
2165 | /*!< UFSR */ |
3211 | /*!< UFSR */ |
- | 3212 | #define SCB_CFSR_UNDEFINSTR_Pos (16U) |
|
- | 3213 | #define SCB_CFSR_UNDEFINSTR_Msk (0x1U << SCB_CFSR_UNDEFINSTR_Pos) /*!< 0x00010000 */ |
|
2166 | #define SCB_CFSR_UNDEFINSTR ((uint32_t)0x00010000) /*!< The processor attempt to execute an undefined instruction */ |
3214 | #define SCB_CFSR_UNDEFINSTR SCB_CFSR_UNDEFINSTR_Msk /*!< The processor attempt to execute an undefined instruction */ |
- | 3215 | #define SCB_CFSR_INVSTATE_Pos (17U) |
|
- | 3216 | #define SCB_CFSR_INVSTATE_Msk (0x1U << SCB_CFSR_INVSTATE_Pos) /*!< 0x00020000 */ |
|
2167 | #define SCB_CFSR_INVSTATE ((uint32_t)0x00020000) /*!< Invalid combination of EPSR and instruction */ |
3217 | #define SCB_CFSR_INVSTATE SCB_CFSR_INVSTATE_Msk /*!< Invalid combination of EPSR and instruction */ |
- | 3218 | #define SCB_CFSR_INVPC_Pos (18U) |
|
- | 3219 | #define SCB_CFSR_INVPC_Msk (0x1U << SCB_CFSR_INVPC_Pos) /*!< 0x00040000 */ |
|
2168 | #define SCB_CFSR_INVPC ((uint32_t)0x00040000) /*!< Attempt to load EXC_RETURN into pc illegally */ |
3220 | #define SCB_CFSR_INVPC SCB_CFSR_INVPC_Msk /*!< Attempt to load EXC_RETURN into pc illegally */ |
- | 3221 | #define SCB_CFSR_NOCP_Pos (19U) |
|
- | 3222 | #define SCB_CFSR_NOCP_Msk (0x1U << SCB_CFSR_NOCP_Pos) /*!< 0x00080000 */ |
|
2169 | #define SCB_CFSR_NOCP ((uint32_t)0x00080000) /*!< Attempt to use a coprocessor instruction */ |
3223 | #define SCB_CFSR_NOCP SCB_CFSR_NOCP_Msk /*!< Attempt to use a coprocessor instruction */ |
- | 3224 | #define SCB_CFSR_UNALIGNED_Pos (24U) |
|
- | 3225 | #define SCB_CFSR_UNALIGNED_Msk (0x1U << SCB_CFSR_UNALIGNED_Pos) /*!< 0x01000000 */ |
|
2170 | #define SCB_CFSR_UNALIGNED ((uint32_t)0x01000000) /*!< Fault occurs when there is an attempt to make an unaligned memory access */ |
3226 | #define SCB_CFSR_UNALIGNED SCB_CFSR_UNALIGNED_Msk /*!< Fault occurs when there is an attempt to make an unaligned memory access */ |
- | 3227 | #define SCB_CFSR_DIVBYZERO_Pos (25U) |
|
- | 3228 | #define SCB_CFSR_DIVBYZERO_Msk (0x1U << SCB_CFSR_DIVBYZERO_Pos) /*!< 0x02000000 */ |
|
2171 | #define SCB_CFSR_DIVBYZERO ((uint32_t)0x02000000) /*!< Fault occurs when SDIV or DIV instruction is used with a divisor of 0 */ |
3229 | #define SCB_CFSR_DIVBYZERO SCB_CFSR_DIVBYZERO_Msk /*!< Fault occurs when SDIV or DIV instruction is used with a divisor of 0 */ |
2172 | 3230 | ||
2173 | /******************* Bit definition for SCB_HFSR register *******************/ |
3231 | /******************* Bit definition for SCB_HFSR register *******************/ |
2174 | #define SCB_HFSR_VECTTBL ((uint32_t)0x00000002) /*!< Fault occurs because of vector table read on exception processing */ |
3232 | #define SCB_HFSR_VECTTBL ((uint32_t)0x00000002) /*!< Fault occurs because of vector table read on exception processing */ |
2175 | #define SCB_HFSR_FORCED ((uint32_t)0x40000000) /*!< Hard Fault activated when a configurable Fault was received and cannot activate */ |
3233 | #define SCB_HFSR_FORCED ((uint32_t)0x40000000) /*!< Hard Fault activated when a configurable Fault was received and cannot activate */ |
2176 | #define SCB_HFSR_DEBUGEVT ((uint32_t)0x80000000) /*!< Fault related to debug */ |
3234 | #define SCB_HFSR_DEBUGEVT ((uint32_t)0x80000000) /*!< Fault related to debug */ |
2177 | 3235 | ||
2178 | /******************* Bit definition for SCB_DFSR register *******************/ |
3236 | /******************* Bit definition for SCB_DFSR register *******************/ |
2179 | #define SCB_DFSR_HALTED ((uint32_t)0x00000001) /*!< Halt request flag */ |
3237 | #define SCB_DFSR_HALTED ((uint32_t)0x00000001) /*!< Halt request flag */ |
2180 | #define SCB_DFSR_BKPT ((uint32_t)0x00000002) /*!< BKPT flag */ |
3238 | #define SCB_DFSR_BKPT ((uint32_t)0x00000002) /*!< BKPT flag */ |
2181 | #define SCB_DFSR_DWTTRAP ((uint32_t)0x00000004) /*!< Data Watchpoint and Trace (DWT) flag */ |
3239 | #define SCB_DFSR_DWTTRAP ((uint32_t)0x00000004) /*!< Data Watchpoint and Trace (DWT) flag */ |
2182 | #define SCB_DFSR_VCATCH ((uint32_t)0x00000008) /*!< Vector catch flag */ |
3240 | #define SCB_DFSR_VCATCH ((uint32_t)0x00000008) /*!< Vector catch flag */ |
2183 | #define SCB_DFSR_EXTERNAL ((uint32_t)0x00000010) /*!< External debug request flag */ |
3241 | #define SCB_DFSR_EXTERNAL ((uint32_t)0x00000010) /*!< External debug request flag */ |
2184 | 3242 | ||
2185 | /******************* Bit definition for SCB_MMFAR register ******************/ |
3243 | /******************* Bit definition for SCB_MMFAR register ******************/ |
- | 3244 | #define SCB_MMFAR_ADDRESS_Pos (0U) |
|
- | 3245 | #define SCB_MMFAR_ADDRESS_Msk (0xFFFFFFFFU << SCB_MMFAR_ADDRESS_Pos) /*!< 0xFFFFFFFF */ |
|
2186 | #define SCB_MMFAR_ADDRESS ((uint32_t)0xFFFFFFFF) /*!< Mem Manage fault address field */ |
3246 | #define SCB_MMFAR_ADDRESS SCB_MMFAR_ADDRESS_Msk /*!< Mem Manage fault address field */ |
2187 | 3247 | ||
2188 | /******************* Bit definition for SCB_BFAR register *******************/ |
3248 | /******************* Bit definition for SCB_BFAR register *******************/ |
- | 3249 | #define SCB_BFAR_ADDRESS_Pos (0U) |
|
- | 3250 | #define SCB_BFAR_ADDRESS_Msk (0xFFFFFFFFU << SCB_BFAR_ADDRESS_Pos) /*!< 0xFFFFFFFF */ |
|
2189 | #define SCB_BFAR_ADDRESS ((uint32_t)0xFFFFFFFF) /*!< Bus fault address field */ |
3251 | #define SCB_BFAR_ADDRESS SCB_BFAR_ADDRESS_Msk /*!< Bus fault address field */ |
2190 | 3252 | ||
2191 | /******************* Bit definition for SCB_afsr register *******************/ |
3253 | /******************* Bit definition for SCB_afsr register *******************/ |
- | 3254 | #define SCB_AFSR_IMPDEF_Pos (0U) |
|
- | 3255 | #define SCB_AFSR_IMPDEF_Msk (0xFFFFFFFFU << SCB_AFSR_IMPDEF_Pos) /*!< 0xFFFFFFFF */ |
|
2192 | #define SCB_AFSR_IMPDEF ((uint32_t)0xFFFFFFFF) /*!< Implementation defined */ |
3256 | #define SCB_AFSR_IMPDEF SCB_AFSR_IMPDEF_Msk /*!< Implementation defined */ |
2193 | 3257 | ||
2194 | /******************************************************************************/ |
3258 | /******************************************************************************/ |
2195 | /* */ |
3259 | /* */ |
2196 | /* External Interrupt/Event Controller */ |
3260 | /* External Interrupt/Event Controller */ |
2197 | /* */ |
3261 | /* */ |
2198 | /******************************************************************************/ |
3262 | /******************************************************************************/ |
2199 | 3263 | ||
2200 | /******************* Bit definition for EXTI_IMR register *******************/ |
3264 | /******************* Bit definition for EXTI_IMR register *******************/ |
- | 3265 | #define EXTI_IMR_MR0_Pos (0U) |
|
- | 3266 | #define EXTI_IMR_MR0_Msk (0x1U << EXTI_IMR_MR0_Pos) /*!< 0x00000001 */ |
|
2201 | #define EXTI_IMR_MR0 ((uint32_t)0x00000001) /*!< Interrupt Mask on line 0 */ |
3267 | #define EXTI_IMR_MR0 EXTI_IMR_MR0_Msk /*!< Interrupt Mask on line 0 */ |
- | 3268 | #define EXTI_IMR_MR1_Pos (1U) |
|
- | 3269 | #define EXTI_IMR_MR1_Msk (0x1U << EXTI_IMR_MR1_Pos) /*!< 0x00000002 */ |
|
2202 | #define EXTI_IMR_MR1 ((uint32_t)0x00000002) /*!< Interrupt Mask on line 1 */ |
3270 | #define EXTI_IMR_MR1 EXTI_IMR_MR1_Msk /*!< Interrupt Mask on line 1 */ |
- | 3271 | #define EXTI_IMR_MR2_Pos (2U) |
|
- | 3272 | #define EXTI_IMR_MR2_Msk (0x1U << EXTI_IMR_MR2_Pos) /*!< 0x00000004 */ |
|
2203 | #define EXTI_IMR_MR2 ((uint32_t)0x00000004) /*!< Interrupt Mask on line 2 */ |
3273 | #define EXTI_IMR_MR2 EXTI_IMR_MR2_Msk /*!< Interrupt Mask on line 2 */ |
- | 3274 | #define EXTI_IMR_MR3_Pos (3U) |
|
- | 3275 | #define EXTI_IMR_MR3_Msk (0x1U << EXTI_IMR_MR3_Pos) /*!< 0x00000008 */ |
|
2204 | #define EXTI_IMR_MR3 ((uint32_t)0x00000008) /*!< Interrupt Mask on line 3 */ |
3276 | #define EXTI_IMR_MR3 EXTI_IMR_MR3_Msk /*!< Interrupt Mask on line 3 */ |
- | 3277 | #define EXTI_IMR_MR4_Pos (4U) |
|
- | 3278 | #define EXTI_IMR_MR4_Msk (0x1U << EXTI_IMR_MR4_Pos) /*!< 0x00000010 */ |
|
2205 | #define EXTI_IMR_MR4 ((uint32_t)0x00000010) /*!< Interrupt Mask on line 4 */ |
3279 | #define EXTI_IMR_MR4 EXTI_IMR_MR4_Msk /*!< Interrupt Mask on line 4 */ |
- | 3280 | #define EXTI_IMR_MR5_Pos (5U) |
|
- | 3281 | #define EXTI_IMR_MR5_Msk (0x1U << EXTI_IMR_MR5_Pos) /*!< 0x00000020 */ |
|
2206 | #define EXTI_IMR_MR5 ((uint32_t)0x00000020) /*!< Interrupt Mask on line 5 */ |
3282 | #define EXTI_IMR_MR5 EXTI_IMR_MR5_Msk /*!< Interrupt Mask on line 5 */ |
- | 3283 | #define EXTI_IMR_MR6_Pos (6U) |
|
- | 3284 | #define EXTI_IMR_MR6_Msk (0x1U << EXTI_IMR_MR6_Pos) /*!< 0x00000040 */ |
|
2207 | #define EXTI_IMR_MR6 ((uint32_t)0x00000040) /*!< Interrupt Mask on line 6 */ |
3285 | #define EXTI_IMR_MR6 EXTI_IMR_MR6_Msk /*!< Interrupt Mask on line 6 */ |
- | 3286 | #define EXTI_IMR_MR7_Pos (7U) |
|
- | 3287 | #define EXTI_IMR_MR7_Msk (0x1U << EXTI_IMR_MR7_Pos) /*!< 0x00000080 */ |
|
2208 | #define EXTI_IMR_MR7 ((uint32_t)0x00000080) /*!< Interrupt Mask on line 7 */ |
3288 | #define EXTI_IMR_MR7 EXTI_IMR_MR7_Msk /*!< Interrupt Mask on line 7 */ |
- | 3289 | #define EXTI_IMR_MR8_Pos (8U) |
|
- | 3290 | #define EXTI_IMR_MR8_Msk (0x1U << EXTI_IMR_MR8_Pos) /*!< 0x00000100 */ |
|
2209 | #define EXTI_IMR_MR8 ((uint32_t)0x00000100) /*!< Interrupt Mask on line 8 */ |
3291 | #define EXTI_IMR_MR8 EXTI_IMR_MR8_Msk /*!< Interrupt Mask on line 8 */ |
- | 3292 | #define EXTI_IMR_MR9_Pos (9U) |
|
- | 3293 | #define EXTI_IMR_MR9_Msk (0x1U << EXTI_IMR_MR9_Pos) /*!< 0x00000200 */ |
|
2210 | #define EXTI_IMR_MR9 ((uint32_t)0x00000200) /*!< Interrupt Mask on line 9 */ |
3294 | #define EXTI_IMR_MR9 EXTI_IMR_MR9_Msk /*!< Interrupt Mask on line 9 */ |
- | 3295 | #define EXTI_IMR_MR10_Pos (10U) |
|
- | 3296 | #define EXTI_IMR_MR10_Msk (0x1U << EXTI_IMR_MR10_Pos) /*!< 0x00000400 */ |
|
2211 | #define EXTI_IMR_MR10 ((uint32_t)0x00000400) /*!< Interrupt Mask on line 10 */ |
3297 | #define EXTI_IMR_MR10 EXTI_IMR_MR10_Msk /*!< Interrupt Mask on line 10 */ |
- | 3298 | #define EXTI_IMR_MR11_Pos (11U) |
|
- | 3299 | #define EXTI_IMR_MR11_Msk (0x1U << EXTI_IMR_MR11_Pos) /*!< 0x00000800 */ |
|
2212 | #define EXTI_IMR_MR11 ((uint32_t)0x00000800) /*!< Interrupt Mask on line 11 */ |
3300 | #define EXTI_IMR_MR11 EXTI_IMR_MR11_Msk /*!< Interrupt Mask on line 11 */ |
- | 3301 | #define EXTI_IMR_MR12_Pos (12U) |
|
- | 3302 | #define EXTI_IMR_MR12_Msk (0x1U << EXTI_IMR_MR12_Pos) /*!< 0x00001000 */ |
|
2213 | #define EXTI_IMR_MR12 ((uint32_t)0x00001000) /*!< Interrupt Mask on line 12 */ |
3303 | #define EXTI_IMR_MR12 EXTI_IMR_MR12_Msk /*!< Interrupt Mask on line 12 */ |
- | 3304 | #define EXTI_IMR_MR13_Pos (13U) |
|
- | 3305 | #define EXTI_IMR_MR13_Msk (0x1U << EXTI_IMR_MR13_Pos) /*!< 0x00002000 */ |
|
2214 | #define EXTI_IMR_MR13 ((uint32_t)0x00002000) /*!< Interrupt Mask on line 13 */ |
3306 | #define EXTI_IMR_MR13 EXTI_IMR_MR13_Msk /*!< Interrupt Mask on line 13 */ |
- | 3307 | #define EXTI_IMR_MR14_Pos (14U) |
|
- | 3308 | #define EXTI_IMR_MR14_Msk (0x1U << EXTI_IMR_MR14_Pos) /*!< 0x00004000 */ |
|
2215 | #define EXTI_IMR_MR14 ((uint32_t)0x00004000) /*!< Interrupt Mask on line 14 */ |
3309 | #define EXTI_IMR_MR14 EXTI_IMR_MR14_Msk /*!< Interrupt Mask on line 14 */ |
- | 3310 | #define EXTI_IMR_MR15_Pos (15U) |
|
- | 3311 | #define EXTI_IMR_MR15_Msk (0x1U << EXTI_IMR_MR15_Pos) /*!< 0x00008000 */ |
|
2216 | #define EXTI_IMR_MR15 ((uint32_t)0x00008000) /*!< Interrupt Mask on line 15 */ |
3312 | #define EXTI_IMR_MR15 EXTI_IMR_MR15_Msk /*!< Interrupt Mask on line 15 */ |
- | 3313 | #define EXTI_IMR_MR16_Pos (16U) |
|
- | 3314 | #define EXTI_IMR_MR16_Msk (0x1U << EXTI_IMR_MR16_Pos) /*!< 0x00010000 */ |
|
2217 | #define EXTI_IMR_MR16 ((uint32_t)0x00010000) /*!< Interrupt Mask on line 16 */ |
3315 | #define EXTI_IMR_MR16 EXTI_IMR_MR16_Msk /*!< Interrupt Mask on line 16 */ |
- | 3316 | #define EXTI_IMR_MR17_Pos (17U) |
|
- | 3317 | #define EXTI_IMR_MR17_Msk (0x1U << EXTI_IMR_MR17_Pos) /*!< 0x00020000 */ |
|
2218 | #define EXTI_IMR_MR17 ((uint32_t)0x00020000) /*!< Interrupt Mask on line 17 */ |
3318 | #define EXTI_IMR_MR17 EXTI_IMR_MR17_Msk /*!< Interrupt Mask on line 17 */ |
- | 3319 | #define EXTI_IMR_MR18_Pos (18U) |
|
- | 3320 | #define EXTI_IMR_MR18_Msk (0x1U << EXTI_IMR_MR18_Pos) /*!< 0x00040000 */ |
|
2219 | #define EXTI_IMR_MR18 ((uint32_t)0x00040000) /*!< Interrupt Mask on line 18 */ |
3321 | #define EXTI_IMR_MR18 EXTI_IMR_MR18_Msk /*!< Interrupt Mask on line 18 */ |
- | 3322 | #define EXTI_IMR_MR19_Pos (19U) |
|
- | 3323 | #define EXTI_IMR_MR19_Msk (0x1U << EXTI_IMR_MR19_Pos) /*!< 0x00080000 */ |
|
2220 | #define EXTI_IMR_MR19 ((uint32_t)0x00080000) /*!< Interrupt Mask on line 19 */ |
3324 | #define EXTI_IMR_MR19 EXTI_IMR_MR19_Msk /*!< Interrupt Mask on line 19 */ |
- | 3325 | ||
- | 3326 | /* References Defines */ |
|
- | 3327 | #define EXTI_IMR_IM0 EXTI_IMR_MR0 |
|
- | 3328 | #define EXTI_IMR_IM1 EXTI_IMR_MR1 |
|
- | 3329 | #define EXTI_IMR_IM2 EXTI_IMR_MR2 |
|
- | 3330 | #define EXTI_IMR_IM3 EXTI_IMR_MR3 |
|
- | 3331 | #define EXTI_IMR_IM4 EXTI_IMR_MR4 |
|
- | 3332 | #define EXTI_IMR_IM5 EXTI_IMR_MR5 |
|
- | 3333 | #define EXTI_IMR_IM6 EXTI_IMR_MR6 |
|
- | 3334 | #define EXTI_IMR_IM7 EXTI_IMR_MR7 |
|
- | 3335 | #define EXTI_IMR_IM8 EXTI_IMR_MR8 |
|
- | 3336 | #define EXTI_IMR_IM9 EXTI_IMR_MR9 |
|
- | 3337 | #define EXTI_IMR_IM10 EXTI_IMR_MR10 |
|
- | 3338 | #define EXTI_IMR_IM11 EXTI_IMR_MR11 |
|
- | 3339 | #define EXTI_IMR_IM12 EXTI_IMR_MR12 |
|
- | 3340 | #define EXTI_IMR_IM13 EXTI_IMR_MR13 |
|
- | 3341 | #define EXTI_IMR_IM14 EXTI_IMR_MR14 |
|
- | 3342 | #define EXTI_IMR_IM15 EXTI_IMR_MR15 |
|
- | 3343 | #define EXTI_IMR_IM16 EXTI_IMR_MR16 |
|
- | 3344 | #define EXTI_IMR_IM17 EXTI_IMR_MR17 |
|
- | 3345 | #define EXTI_IMR_IM18 EXTI_IMR_MR18 |
|
- | 3346 | #define EXTI_IMR_IM19 EXTI_IMR_MR19 |
|
2221 | 3347 | ||
2222 | /******************* Bit definition for EXTI_EMR register *******************/ |
3348 | /******************* Bit definition for EXTI_EMR register *******************/ |
- | 3349 | #define EXTI_EMR_MR0_Pos (0U) |
|
- | 3350 | #define EXTI_EMR_MR0_Msk (0x1U << EXTI_EMR_MR0_Pos) /*!< 0x00000001 */ |
|
2223 | #define EXTI_EMR_MR0 ((uint32_t)0x00000001) /*!< Event Mask on line 0 */ |
3351 | #define EXTI_EMR_MR0 EXTI_EMR_MR0_Msk /*!< Event Mask on line 0 */ |
- | 3352 | #define EXTI_EMR_MR1_Pos (1U) |
|
- | 3353 | #define EXTI_EMR_MR1_Msk (0x1U << EXTI_EMR_MR1_Pos) /*!< 0x00000002 */ |
|
2224 | #define EXTI_EMR_MR1 ((uint32_t)0x00000002) /*!< Event Mask on line 1 */ |
3354 | #define EXTI_EMR_MR1 EXTI_EMR_MR1_Msk /*!< Event Mask on line 1 */ |
- | 3355 | #define EXTI_EMR_MR2_Pos (2U) |
|
- | 3356 | #define EXTI_EMR_MR2_Msk (0x1U << EXTI_EMR_MR2_Pos) /*!< 0x00000004 */ |
|
2225 | #define EXTI_EMR_MR2 ((uint32_t)0x00000004) /*!< Event Mask on line 2 */ |
3357 | #define EXTI_EMR_MR2 EXTI_EMR_MR2_Msk /*!< Event Mask on line 2 */ |
- | 3358 | #define EXTI_EMR_MR3_Pos (3U) |
|
- | 3359 | #define EXTI_EMR_MR3_Msk (0x1U << EXTI_EMR_MR3_Pos) /*!< 0x00000008 */ |
|
2226 | #define EXTI_EMR_MR3 ((uint32_t)0x00000008) /*!< Event Mask on line 3 */ |
3360 | #define EXTI_EMR_MR3 EXTI_EMR_MR3_Msk /*!< Event Mask on line 3 */ |
- | 3361 | #define EXTI_EMR_MR4_Pos (4U) |
|
- | 3362 | #define EXTI_EMR_MR4_Msk (0x1U << EXTI_EMR_MR4_Pos) /*!< 0x00000010 */ |
|
2227 | #define EXTI_EMR_MR4 ((uint32_t)0x00000010) /*!< Event Mask on line 4 */ |
3363 | #define EXTI_EMR_MR4 EXTI_EMR_MR4_Msk /*!< Event Mask on line 4 */ |
- | 3364 | #define EXTI_EMR_MR5_Pos (5U) |
|
- | 3365 | #define EXTI_EMR_MR5_Msk (0x1U << EXTI_EMR_MR5_Pos) /*!< 0x00000020 */ |
|
2228 | #define EXTI_EMR_MR5 ((uint32_t)0x00000020) /*!< Event Mask on line 5 */ |
3366 | #define EXTI_EMR_MR5 EXTI_EMR_MR5_Msk /*!< Event Mask on line 5 */ |
- | 3367 | #define EXTI_EMR_MR6_Pos (6U) |
|
- | 3368 | #define EXTI_EMR_MR6_Msk (0x1U << EXTI_EMR_MR6_Pos) /*!< 0x00000040 */ |
|
2229 | #define EXTI_EMR_MR6 ((uint32_t)0x00000040) /*!< Event Mask on line 6 */ |
3369 | #define EXTI_EMR_MR6 EXTI_EMR_MR6_Msk /*!< Event Mask on line 6 */ |
- | 3370 | #define EXTI_EMR_MR7_Pos (7U) |
|
- | 3371 | #define EXTI_EMR_MR7_Msk (0x1U << EXTI_EMR_MR7_Pos) /*!< 0x00000080 */ |
|
2230 | #define EXTI_EMR_MR7 ((uint32_t)0x00000080) /*!< Event Mask on line 7 */ |
3372 | #define EXTI_EMR_MR7 EXTI_EMR_MR7_Msk /*!< Event Mask on line 7 */ |
- | 3373 | #define EXTI_EMR_MR8_Pos (8U) |
|
- | 3374 | #define EXTI_EMR_MR8_Msk (0x1U << EXTI_EMR_MR8_Pos) /*!< 0x00000100 */ |
|
2231 | #define EXTI_EMR_MR8 ((uint32_t)0x00000100) /*!< Event Mask on line 8 */ |
3375 | #define EXTI_EMR_MR8 EXTI_EMR_MR8_Msk /*!< Event Mask on line 8 */ |
- | 3376 | #define EXTI_EMR_MR9_Pos (9U) |
|
- | 3377 | #define EXTI_EMR_MR9_Msk (0x1U << EXTI_EMR_MR9_Pos) /*!< 0x00000200 */ |
|
2232 | #define EXTI_EMR_MR9 ((uint32_t)0x00000200) /*!< Event Mask on line 9 */ |
3378 | #define EXTI_EMR_MR9 EXTI_EMR_MR9_Msk /*!< Event Mask on line 9 */ |
- | 3379 | #define EXTI_EMR_MR10_Pos (10U) |
|
- | 3380 | #define EXTI_EMR_MR10_Msk (0x1U << EXTI_EMR_MR10_Pos) /*!< 0x00000400 */ |
|
2233 | #define EXTI_EMR_MR10 ((uint32_t)0x00000400) /*!< Event Mask on line 10 */ |
3381 | #define EXTI_EMR_MR10 EXTI_EMR_MR10_Msk /*!< Event Mask on line 10 */ |
- | 3382 | #define EXTI_EMR_MR11_Pos (11U) |
|
- | 3383 | #define EXTI_EMR_MR11_Msk (0x1U << EXTI_EMR_MR11_Pos) /*!< 0x00000800 */ |
|
2234 | #define EXTI_EMR_MR11 ((uint32_t)0x00000800) /*!< Event Mask on line 11 */ |
3384 | #define EXTI_EMR_MR11 EXTI_EMR_MR11_Msk /*!< Event Mask on line 11 */ |
- | 3385 | #define EXTI_EMR_MR12_Pos (12U) |
|
- | 3386 | #define EXTI_EMR_MR12_Msk (0x1U << EXTI_EMR_MR12_Pos) /*!< 0x00001000 */ |
|
2235 | #define EXTI_EMR_MR12 ((uint32_t)0x00001000) /*!< Event Mask on line 12 */ |
3387 | #define EXTI_EMR_MR12 EXTI_EMR_MR12_Msk /*!< Event Mask on line 12 */ |
- | 3388 | #define EXTI_EMR_MR13_Pos (13U) |
|
- | 3389 | #define EXTI_EMR_MR13_Msk (0x1U << EXTI_EMR_MR13_Pos) /*!< 0x00002000 */ |
|
2236 | #define EXTI_EMR_MR13 ((uint32_t)0x00002000) /*!< Event Mask on line 13 */ |
3390 | #define EXTI_EMR_MR13 EXTI_EMR_MR13_Msk /*!< Event Mask on line 13 */ |
- | 3391 | #define EXTI_EMR_MR14_Pos (14U) |
|
- | 3392 | #define EXTI_EMR_MR14_Msk (0x1U << EXTI_EMR_MR14_Pos) /*!< 0x00004000 */ |
|
2237 | #define EXTI_EMR_MR14 ((uint32_t)0x00004000) /*!< Event Mask on line 14 */ |
3393 | #define EXTI_EMR_MR14 EXTI_EMR_MR14_Msk /*!< Event Mask on line 14 */ |
- | 3394 | #define EXTI_EMR_MR15_Pos (15U) |
|
- | 3395 | #define EXTI_EMR_MR15_Msk (0x1U << EXTI_EMR_MR15_Pos) /*!< 0x00008000 */ |
|
2238 | #define EXTI_EMR_MR15 ((uint32_t)0x00008000) /*!< Event Mask on line 15 */ |
3396 | #define EXTI_EMR_MR15 EXTI_EMR_MR15_Msk /*!< Event Mask on line 15 */ |
- | 3397 | #define EXTI_EMR_MR16_Pos (16U) |
|
- | 3398 | #define EXTI_EMR_MR16_Msk (0x1U << EXTI_EMR_MR16_Pos) /*!< 0x00010000 */ |
|
2239 | #define EXTI_EMR_MR16 ((uint32_t)0x00010000) /*!< Event Mask on line 16 */ |
3399 | #define EXTI_EMR_MR16 EXTI_EMR_MR16_Msk /*!< Event Mask on line 16 */ |
- | 3400 | #define EXTI_EMR_MR17_Pos (17U) |
|
- | 3401 | #define EXTI_EMR_MR17_Msk (0x1U << EXTI_EMR_MR17_Pos) /*!< 0x00020000 */ |
|
2240 | #define EXTI_EMR_MR17 ((uint32_t)0x00020000) /*!< Event Mask on line 17 */ |
3402 | #define EXTI_EMR_MR17 EXTI_EMR_MR17_Msk /*!< Event Mask on line 17 */ |
- | 3403 | #define EXTI_EMR_MR18_Pos (18U) |
|
- | 3404 | #define EXTI_EMR_MR18_Msk (0x1U << EXTI_EMR_MR18_Pos) /*!< 0x00040000 */ |
|
2241 | #define EXTI_EMR_MR18 ((uint32_t)0x00040000) /*!< Event Mask on line 18 */ |
3405 | #define EXTI_EMR_MR18 EXTI_EMR_MR18_Msk /*!< Event Mask on line 18 */ |
- | 3406 | #define EXTI_EMR_MR19_Pos (19U) |
|
- | 3407 | #define EXTI_EMR_MR19_Msk (0x1U << EXTI_EMR_MR19_Pos) /*!< 0x00080000 */ |
|
2242 | #define EXTI_EMR_MR19 ((uint32_t)0x00080000) /*!< Event Mask on line 19 */ |
3408 | #define EXTI_EMR_MR19 EXTI_EMR_MR19_Msk /*!< Event Mask on line 19 */ |
- | 3409 | ||
- | 3410 | /* References Defines */ |
|
- | 3411 | #define EXTI_EMR_EM0 EXTI_EMR_MR0 |
|
- | 3412 | #define EXTI_EMR_EM1 EXTI_EMR_MR1 |
|
- | 3413 | #define EXTI_EMR_EM2 EXTI_EMR_MR2 |
|
- | 3414 | #define EXTI_EMR_EM3 EXTI_EMR_MR3 |
|
- | 3415 | #define EXTI_EMR_EM4 EXTI_EMR_MR4 |
|
- | 3416 | #define EXTI_EMR_EM5 EXTI_EMR_MR5 |
|
- | 3417 | #define EXTI_EMR_EM6 EXTI_EMR_MR6 |
|
- | 3418 | #define EXTI_EMR_EM7 EXTI_EMR_MR7 |
|
- | 3419 | #define EXTI_EMR_EM8 EXTI_EMR_MR8 |
|
- | 3420 | #define EXTI_EMR_EM9 EXTI_EMR_MR9 |
|
- | 3421 | #define EXTI_EMR_EM10 EXTI_EMR_MR10 |
|
- | 3422 | #define EXTI_EMR_EM11 EXTI_EMR_MR11 |
|
- | 3423 | #define EXTI_EMR_EM12 EXTI_EMR_MR12 |
|
- | 3424 | #define EXTI_EMR_EM13 EXTI_EMR_MR13 |
|
- | 3425 | #define EXTI_EMR_EM14 EXTI_EMR_MR14 |
|
- | 3426 | #define EXTI_EMR_EM15 EXTI_EMR_MR15 |
|
- | 3427 | #define EXTI_EMR_EM16 EXTI_EMR_MR16 |
|
- | 3428 | #define EXTI_EMR_EM17 EXTI_EMR_MR17 |
|
- | 3429 | #define EXTI_EMR_EM18 EXTI_EMR_MR18 |
|
- | 3430 | #define EXTI_EMR_EM19 EXTI_EMR_MR19 |
|
2243 | 3431 | ||
2244 | /****************** Bit definition for EXTI_RTSR register *******************/ |
3432 | /****************** Bit definition for EXTI_RTSR register *******************/ |
- | 3433 | #define EXTI_RTSR_TR0_Pos (0U) |
|
- | 3434 | #define EXTI_RTSR_TR0_Msk (0x1U << EXTI_RTSR_TR0_Pos) /*!< 0x00000001 */ |
|
2245 | #define EXTI_RTSR_TR0 ((uint32_t)0x00000001) /*!< Rising trigger event configuration bit of line 0 */ |
3435 | #define EXTI_RTSR_TR0 EXTI_RTSR_TR0_Msk /*!< Rising trigger event configuration bit of line 0 */ |
- | 3436 | #define EXTI_RTSR_TR1_Pos (1U) |
|
- | 3437 | #define EXTI_RTSR_TR1_Msk (0x1U << EXTI_RTSR_TR1_Pos) /*!< 0x00000002 */ |
|
2246 | #define EXTI_RTSR_TR1 ((uint32_t)0x00000002) /*!< Rising trigger event configuration bit of line 1 */ |
3438 | #define EXTI_RTSR_TR1 EXTI_RTSR_TR1_Msk /*!< Rising trigger event configuration bit of line 1 */ |
- | 3439 | #define EXTI_RTSR_TR2_Pos (2U) |
|
- | 3440 | #define EXTI_RTSR_TR2_Msk (0x1U << EXTI_RTSR_TR2_Pos) /*!< 0x00000004 */ |
|
2247 | #define EXTI_RTSR_TR2 ((uint32_t)0x00000004) /*!< Rising trigger event configuration bit of line 2 */ |
3441 | #define EXTI_RTSR_TR2 EXTI_RTSR_TR2_Msk /*!< Rising trigger event configuration bit of line 2 */ |
- | 3442 | #define EXTI_RTSR_TR3_Pos (3U) |
|
- | 3443 | #define EXTI_RTSR_TR3_Msk (0x1U << EXTI_RTSR_TR3_Pos) /*!< 0x00000008 */ |
|
2248 | #define EXTI_RTSR_TR3 ((uint32_t)0x00000008) /*!< Rising trigger event configuration bit of line 3 */ |
3444 | #define EXTI_RTSR_TR3 EXTI_RTSR_TR3_Msk /*!< Rising trigger event configuration bit of line 3 */ |
- | 3445 | #define EXTI_RTSR_TR4_Pos (4U) |
|
- | 3446 | #define EXTI_RTSR_TR4_Msk (0x1U << EXTI_RTSR_TR4_Pos) /*!< 0x00000010 */ |
|
2249 | #define EXTI_RTSR_TR4 ((uint32_t)0x00000010) /*!< Rising trigger event configuration bit of line 4 */ |
3447 | #define EXTI_RTSR_TR4 EXTI_RTSR_TR4_Msk /*!< Rising trigger event configuration bit of line 4 */ |
- | 3448 | #define EXTI_RTSR_TR5_Pos (5U) |
|
- | 3449 | #define EXTI_RTSR_TR5_Msk (0x1U << EXTI_RTSR_TR5_Pos) /*!< 0x00000020 */ |
|
2250 | #define EXTI_RTSR_TR5 ((uint32_t)0x00000020) /*!< Rising trigger event configuration bit of line 5 */ |
3450 | #define EXTI_RTSR_TR5 EXTI_RTSR_TR5_Msk /*!< Rising trigger event configuration bit of line 5 */ |
- | 3451 | #define EXTI_RTSR_TR6_Pos (6U) |
|
- | 3452 | #define EXTI_RTSR_TR6_Msk (0x1U << EXTI_RTSR_TR6_Pos) /*!< 0x00000040 */ |
|
2251 | #define EXTI_RTSR_TR6 ((uint32_t)0x00000040) /*!< Rising trigger event configuration bit of line 6 */ |
3453 | #define EXTI_RTSR_TR6 EXTI_RTSR_TR6_Msk /*!< Rising trigger event configuration bit of line 6 */ |
- | 3454 | #define EXTI_RTSR_TR7_Pos (7U) |
|
- | 3455 | #define EXTI_RTSR_TR7_Msk (0x1U << EXTI_RTSR_TR7_Pos) /*!< 0x00000080 */ |
|
2252 | #define EXTI_RTSR_TR7 ((uint32_t)0x00000080) /*!< Rising trigger event configuration bit of line 7 */ |
3456 | #define EXTI_RTSR_TR7 EXTI_RTSR_TR7_Msk /*!< Rising trigger event configuration bit of line 7 */ |
- | 3457 | #define EXTI_RTSR_TR8_Pos (8U) |
|
- | 3458 | #define EXTI_RTSR_TR8_Msk (0x1U << EXTI_RTSR_TR8_Pos) /*!< 0x00000100 */ |
|
2253 | #define EXTI_RTSR_TR8 ((uint32_t)0x00000100) /*!< Rising trigger event configuration bit of line 8 */ |
3459 | #define EXTI_RTSR_TR8 EXTI_RTSR_TR8_Msk /*!< Rising trigger event configuration bit of line 8 */ |
- | 3460 | #define EXTI_RTSR_TR9_Pos (9U) |
|
- | 3461 | #define EXTI_RTSR_TR9_Msk (0x1U << EXTI_RTSR_TR9_Pos) /*!< 0x00000200 */ |
|
2254 | #define EXTI_RTSR_TR9 ((uint32_t)0x00000200) /*!< Rising trigger event configuration bit of line 9 */ |
3462 | #define EXTI_RTSR_TR9 EXTI_RTSR_TR9_Msk /*!< Rising trigger event configuration bit of line 9 */ |
- | 3463 | #define EXTI_RTSR_TR10_Pos (10U) |
|
- | 3464 | #define EXTI_RTSR_TR10_Msk (0x1U << EXTI_RTSR_TR10_Pos) /*!< 0x00000400 */ |
|
2255 | #define EXTI_RTSR_TR10 ((uint32_t)0x00000400) /*!< Rising trigger event configuration bit of line 10 */ |
3465 | #define EXTI_RTSR_TR10 EXTI_RTSR_TR10_Msk /*!< Rising trigger event configuration bit of line 10 */ |
- | 3466 | #define EXTI_RTSR_TR11_Pos (11U) |
|
- | 3467 | #define EXTI_RTSR_TR11_Msk (0x1U << EXTI_RTSR_TR11_Pos) /*!< 0x00000800 */ |
|
2256 | #define EXTI_RTSR_TR11 ((uint32_t)0x00000800) /*!< Rising trigger event configuration bit of line 11 */ |
3468 | #define EXTI_RTSR_TR11 EXTI_RTSR_TR11_Msk /*!< Rising trigger event configuration bit of line 11 */ |
- | 3469 | #define EXTI_RTSR_TR12_Pos (12U) |
|
- | 3470 | #define EXTI_RTSR_TR12_Msk (0x1U << EXTI_RTSR_TR12_Pos) /*!< 0x00001000 */ |
|
2257 | #define EXTI_RTSR_TR12 ((uint32_t)0x00001000) /*!< Rising trigger event configuration bit of line 12 */ |
3471 | #define EXTI_RTSR_TR12 EXTI_RTSR_TR12_Msk /*!< Rising trigger event configuration bit of line 12 */ |
- | 3472 | #define EXTI_RTSR_TR13_Pos (13U) |
|
- | 3473 | #define EXTI_RTSR_TR13_Msk (0x1U << EXTI_RTSR_TR13_Pos) /*!< 0x00002000 */ |
|
2258 | #define EXTI_RTSR_TR13 ((uint32_t)0x00002000) /*!< Rising trigger event configuration bit of line 13 */ |
3474 | #define EXTI_RTSR_TR13 EXTI_RTSR_TR13_Msk /*!< Rising trigger event configuration bit of line 13 */ |
- | 3475 | #define EXTI_RTSR_TR14_Pos (14U) |
|
- | 3476 | #define EXTI_RTSR_TR14_Msk (0x1U << EXTI_RTSR_TR14_Pos) /*!< 0x00004000 */ |
|
2259 | #define EXTI_RTSR_TR14 ((uint32_t)0x00004000) /*!< Rising trigger event configuration bit of line 14 */ |
3477 | #define EXTI_RTSR_TR14 EXTI_RTSR_TR14_Msk /*!< Rising trigger event configuration bit of line 14 */ |
- | 3478 | #define EXTI_RTSR_TR15_Pos (15U) |
|
- | 3479 | #define EXTI_RTSR_TR15_Msk (0x1U << EXTI_RTSR_TR15_Pos) /*!< 0x00008000 */ |
|
2260 | #define EXTI_RTSR_TR15 ((uint32_t)0x00008000) /*!< Rising trigger event configuration bit of line 15 */ |
3480 | #define EXTI_RTSR_TR15 EXTI_RTSR_TR15_Msk /*!< Rising trigger event configuration bit of line 15 */ |
- | 3481 | #define EXTI_RTSR_TR16_Pos (16U) |
|
- | 3482 | #define EXTI_RTSR_TR16_Msk (0x1U << EXTI_RTSR_TR16_Pos) /*!< 0x00010000 */ |
|
2261 | #define EXTI_RTSR_TR16 ((uint32_t)0x00010000) /*!< Rising trigger event configuration bit of line 16 */ |
3483 | #define EXTI_RTSR_TR16 EXTI_RTSR_TR16_Msk /*!< Rising trigger event configuration bit of line 16 */ |
- | 3484 | #define EXTI_RTSR_TR17_Pos (17U) |
|
- | 3485 | #define EXTI_RTSR_TR17_Msk (0x1U << EXTI_RTSR_TR17_Pos) /*!< 0x00020000 */ |
|
2262 | #define EXTI_RTSR_TR17 ((uint32_t)0x00020000) /*!< Rising trigger event configuration bit of line 17 */ |
3486 | #define EXTI_RTSR_TR17 EXTI_RTSR_TR17_Msk /*!< Rising trigger event configuration bit of line 17 */ |
- | 3487 | #define EXTI_RTSR_TR18_Pos (18U) |
|
- | 3488 | #define EXTI_RTSR_TR18_Msk (0x1U << EXTI_RTSR_TR18_Pos) /*!< 0x00040000 */ |
|
2263 | #define EXTI_RTSR_TR18 ((uint32_t)0x00040000) /*!< Rising trigger event configuration bit of line 18 */ |
3489 | #define EXTI_RTSR_TR18 EXTI_RTSR_TR18_Msk /*!< Rising trigger event configuration bit of line 18 */ |
- | 3490 | #define EXTI_RTSR_TR19_Pos (19U) |
|
- | 3491 | #define EXTI_RTSR_TR19_Msk (0x1U << EXTI_RTSR_TR19_Pos) /*!< 0x00080000 */ |
|
2264 | #define EXTI_RTSR_TR19 ((uint32_t)0x00080000) /*!< Rising trigger event configuration bit of line 19 */ |
3492 | #define EXTI_RTSR_TR19 EXTI_RTSR_TR19_Msk /*!< Rising trigger event configuration bit of line 19 */ |
- | 3493 | ||
- | 3494 | /* References Defines */ |
|
- | 3495 | #define EXTI_RTSR_RT0 EXTI_RTSR_TR0 |
|
- | 3496 | #define EXTI_RTSR_RT1 EXTI_RTSR_TR1 |
|
- | 3497 | #define EXTI_RTSR_RT2 EXTI_RTSR_TR2 |
|
- | 3498 | #define EXTI_RTSR_RT3 EXTI_RTSR_TR3 |
|
- | 3499 | #define EXTI_RTSR_RT4 EXTI_RTSR_TR4 |
|
- | 3500 | #define EXTI_RTSR_RT5 EXTI_RTSR_TR5 |
|
- | 3501 | #define EXTI_RTSR_RT6 EXTI_RTSR_TR6 |
|
- | 3502 | #define EXTI_RTSR_RT7 EXTI_RTSR_TR7 |
|
- | 3503 | #define EXTI_RTSR_RT8 EXTI_RTSR_TR8 |
|
- | 3504 | #define EXTI_RTSR_RT9 EXTI_RTSR_TR9 |
|
- | 3505 | #define EXTI_RTSR_RT10 EXTI_RTSR_TR10 |
|
- | 3506 | #define EXTI_RTSR_RT11 EXTI_RTSR_TR11 |
|
- | 3507 | #define EXTI_RTSR_RT12 EXTI_RTSR_TR12 |
|
- | 3508 | #define EXTI_RTSR_RT13 EXTI_RTSR_TR13 |
|
- | 3509 | #define EXTI_RTSR_RT14 EXTI_RTSR_TR14 |
|
- | 3510 | #define EXTI_RTSR_RT15 EXTI_RTSR_TR15 |
|
- | 3511 | #define EXTI_RTSR_RT16 EXTI_RTSR_TR16 |
|
- | 3512 | #define EXTI_RTSR_RT17 EXTI_RTSR_TR17 |
|
- | 3513 | #define EXTI_RTSR_RT18 EXTI_RTSR_TR18 |
|
- | 3514 | #define EXTI_RTSR_RT19 EXTI_RTSR_TR19 |
|
2265 | 3515 | ||
2266 | /****************** Bit definition for EXTI_FTSR register *******************/ |
3516 | /****************** Bit definition for EXTI_FTSR register *******************/ |
- | 3517 | #define EXTI_FTSR_TR0_Pos (0U) |
|
- | 3518 | #define EXTI_FTSR_TR0_Msk (0x1U << EXTI_FTSR_TR0_Pos) /*!< 0x00000001 */ |
|
2267 | #define EXTI_FTSR_TR0 ((uint32_t)0x00000001) /*!< Falling trigger event configuration bit of line 0 */ |
3519 | #define EXTI_FTSR_TR0 EXTI_FTSR_TR0_Msk /*!< Falling trigger event configuration bit of line 0 */ |
- | 3520 | #define EXTI_FTSR_TR1_Pos (1U) |
|
- | 3521 | #define EXTI_FTSR_TR1_Msk (0x1U << EXTI_FTSR_TR1_Pos) /*!< 0x00000002 */ |
|
2268 | #define EXTI_FTSR_TR1 ((uint32_t)0x00000002) /*!< Falling trigger event configuration bit of line 1 */ |
3522 | #define EXTI_FTSR_TR1 EXTI_FTSR_TR1_Msk /*!< Falling trigger event configuration bit of line 1 */ |
- | 3523 | #define EXTI_FTSR_TR2_Pos (2U) |
|
- | 3524 | #define EXTI_FTSR_TR2_Msk (0x1U << EXTI_FTSR_TR2_Pos) /*!< 0x00000004 */ |
|
2269 | #define EXTI_FTSR_TR2 ((uint32_t)0x00000004) /*!< Falling trigger event configuration bit of line 2 */ |
3525 | #define EXTI_FTSR_TR2 EXTI_FTSR_TR2_Msk /*!< Falling trigger event configuration bit of line 2 */ |
- | 3526 | #define EXTI_FTSR_TR3_Pos (3U) |
|
- | 3527 | #define EXTI_FTSR_TR3_Msk (0x1U << EXTI_FTSR_TR3_Pos) /*!< 0x00000008 */ |
|
2270 | #define EXTI_FTSR_TR3 ((uint32_t)0x00000008) /*!< Falling trigger event configuration bit of line 3 */ |
3528 | #define EXTI_FTSR_TR3 EXTI_FTSR_TR3_Msk /*!< Falling trigger event configuration bit of line 3 */ |
- | 3529 | #define EXTI_FTSR_TR4_Pos (4U) |
|
- | 3530 | #define EXTI_FTSR_TR4_Msk (0x1U << EXTI_FTSR_TR4_Pos) /*!< 0x00000010 */ |
|
2271 | #define EXTI_FTSR_TR4 ((uint32_t)0x00000010) /*!< Falling trigger event configuration bit of line 4 */ |
3531 | #define EXTI_FTSR_TR4 EXTI_FTSR_TR4_Msk /*!< Falling trigger event configuration bit of line 4 */ |
- | 3532 | #define EXTI_FTSR_TR5_Pos (5U) |
|
- | 3533 | #define EXTI_FTSR_TR5_Msk (0x1U << EXTI_FTSR_TR5_Pos) /*!< 0x00000020 */ |
|
2272 | #define EXTI_FTSR_TR5 ((uint32_t)0x00000020) /*!< Falling trigger event configuration bit of line 5 */ |
3534 | #define EXTI_FTSR_TR5 EXTI_FTSR_TR5_Msk /*!< Falling trigger event configuration bit of line 5 */ |
- | 3535 | #define EXTI_FTSR_TR6_Pos (6U) |
|
- | 3536 | #define EXTI_FTSR_TR6_Msk (0x1U << EXTI_FTSR_TR6_Pos) /*!< 0x00000040 */ |
|
2273 | #define EXTI_FTSR_TR6 ((uint32_t)0x00000040) /*!< Falling trigger event configuration bit of line 6 */ |
3537 | #define EXTI_FTSR_TR6 EXTI_FTSR_TR6_Msk /*!< Falling trigger event configuration bit of line 6 */ |
- | 3538 | #define EXTI_FTSR_TR7_Pos (7U) |
|
- | 3539 | #define EXTI_FTSR_TR7_Msk (0x1U << EXTI_FTSR_TR7_Pos) /*!< 0x00000080 */ |
|
2274 | #define EXTI_FTSR_TR7 ((uint32_t)0x00000080) /*!< Falling trigger event configuration bit of line 7 */ |
3540 | #define EXTI_FTSR_TR7 EXTI_FTSR_TR7_Msk /*!< Falling trigger event configuration bit of line 7 */ |
- | 3541 | #define EXTI_FTSR_TR8_Pos (8U) |
|
- | 3542 | #define EXTI_FTSR_TR8_Msk (0x1U << EXTI_FTSR_TR8_Pos) /*!< 0x00000100 */ |
|
2275 | #define EXTI_FTSR_TR8 ((uint32_t)0x00000100) /*!< Falling trigger event configuration bit of line 8 */ |
3543 | #define EXTI_FTSR_TR8 EXTI_FTSR_TR8_Msk /*!< Falling trigger event configuration bit of line 8 */ |
- | 3544 | #define EXTI_FTSR_TR9_Pos (9U) |
|
- | 3545 | #define EXTI_FTSR_TR9_Msk (0x1U << EXTI_FTSR_TR9_Pos) /*!< 0x00000200 */ |
|
2276 | #define EXTI_FTSR_TR9 ((uint32_t)0x00000200) /*!< Falling trigger event configuration bit of line 9 */ |
3546 | #define EXTI_FTSR_TR9 EXTI_FTSR_TR9_Msk /*!< Falling trigger event configuration bit of line 9 */ |
- | 3547 | #define EXTI_FTSR_TR10_Pos (10U) |
|
- | 3548 | #define EXTI_FTSR_TR10_Msk (0x1U << EXTI_FTSR_TR10_Pos) /*!< 0x00000400 */ |
|
2277 | #define EXTI_FTSR_TR10 ((uint32_t)0x00000400) /*!< Falling trigger event configuration bit of line 10 */ |
3549 | #define EXTI_FTSR_TR10 EXTI_FTSR_TR10_Msk /*!< Falling trigger event configuration bit of line 10 */ |
- | 3550 | #define EXTI_FTSR_TR11_Pos (11U) |
|
- | 3551 | #define EXTI_FTSR_TR11_Msk (0x1U << EXTI_FTSR_TR11_Pos) /*!< 0x00000800 */ |
|
2278 | #define EXTI_FTSR_TR11 ((uint32_t)0x00000800) /*!< Falling trigger event configuration bit of line 11 */ |
3552 | #define EXTI_FTSR_TR11 EXTI_FTSR_TR11_Msk /*!< Falling trigger event configuration bit of line 11 */ |
- | 3553 | #define EXTI_FTSR_TR12_Pos (12U) |
|
- | 3554 | #define EXTI_FTSR_TR12_Msk (0x1U << EXTI_FTSR_TR12_Pos) /*!< 0x00001000 */ |
|
2279 | #define EXTI_FTSR_TR12 ((uint32_t)0x00001000) /*!< Falling trigger event configuration bit of line 12 */ |
3555 | #define EXTI_FTSR_TR12 EXTI_FTSR_TR12_Msk /*!< Falling trigger event configuration bit of line 12 */ |
- | 3556 | #define EXTI_FTSR_TR13_Pos (13U) |
|
- | 3557 | #define EXTI_FTSR_TR13_Msk (0x1U << EXTI_FTSR_TR13_Pos) /*!< 0x00002000 */ |
|
2280 | #define EXTI_FTSR_TR13 ((uint32_t)0x00002000) /*!< Falling trigger event configuration bit of line 13 */ |
3558 | #define EXTI_FTSR_TR13 EXTI_FTSR_TR13_Msk /*!< Falling trigger event configuration bit of line 13 */ |
- | 3559 | #define EXTI_FTSR_TR14_Pos (14U) |
|
- | 3560 | #define EXTI_FTSR_TR14_Msk (0x1U << EXTI_FTSR_TR14_Pos) /*!< 0x00004000 */ |
|
2281 | #define EXTI_FTSR_TR14 ((uint32_t)0x00004000) /*!< Falling trigger event configuration bit of line 14 */ |
3561 | #define EXTI_FTSR_TR14 EXTI_FTSR_TR14_Msk /*!< Falling trigger event configuration bit of line 14 */ |
- | 3562 | #define EXTI_FTSR_TR15_Pos (15U) |
|
- | 3563 | #define EXTI_FTSR_TR15_Msk (0x1U << EXTI_FTSR_TR15_Pos) /*!< 0x00008000 */ |
|
2282 | #define EXTI_FTSR_TR15 ((uint32_t)0x00008000) /*!< Falling trigger event configuration bit of line 15 */ |
3564 | #define EXTI_FTSR_TR15 EXTI_FTSR_TR15_Msk /*!< Falling trigger event configuration bit of line 15 */ |
- | 3565 | #define EXTI_FTSR_TR16_Pos (16U) |
|
- | 3566 | #define EXTI_FTSR_TR16_Msk (0x1U << EXTI_FTSR_TR16_Pos) /*!< 0x00010000 */ |
|
2283 | #define EXTI_FTSR_TR16 ((uint32_t)0x00010000) /*!< Falling trigger event configuration bit of line 16 */ |
3567 | #define EXTI_FTSR_TR16 EXTI_FTSR_TR16_Msk /*!< Falling trigger event configuration bit of line 16 */ |
- | 3568 | #define EXTI_FTSR_TR17_Pos (17U) |
|
- | 3569 | #define EXTI_FTSR_TR17_Msk (0x1U << EXTI_FTSR_TR17_Pos) /*!< 0x00020000 */ |
|
2284 | #define EXTI_FTSR_TR17 ((uint32_t)0x00020000) /*!< Falling trigger event configuration bit of line 17 */ |
3570 | #define EXTI_FTSR_TR17 EXTI_FTSR_TR17_Msk /*!< Falling trigger event configuration bit of line 17 */ |
- | 3571 | #define EXTI_FTSR_TR18_Pos (18U) |
|
- | 3572 | #define EXTI_FTSR_TR18_Msk (0x1U << EXTI_FTSR_TR18_Pos) /*!< 0x00040000 */ |
|
2285 | #define EXTI_FTSR_TR18 ((uint32_t)0x00040000) /*!< Falling trigger event configuration bit of line 18 */ |
3573 | #define EXTI_FTSR_TR18 EXTI_FTSR_TR18_Msk /*!< Falling trigger event configuration bit of line 18 */ |
- | 3574 | #define EXTI_FTSR_TR19_Pos (19U) |
|
- | 3575 | #define EXTI_FTSR_TR19_Msk (0x1U << EXTI_FTSR_TR19_Pos) /*!< 0x00080000 */ |
|
2286 | #define EXTI_FTSR_TR19 ((uint32_t)0x00080000) /*!< Falling trigger event configuration bit of line 19 */ |
3576 | #define EXTI_FTSR_TR19 EXTI_FTSR_TR19_Msk /*!< Falling trigger event configuration bit of line 19 */ |
- | 3577 | ||
- | 3578 | /* References Defines */ |
|
- | 3579 | #define EXTI_FTSR_FT0 EXTI_FTSR_TR0 |
|
- | 3580 | #define EXTI_FTSR_FT1 EXTI_FTSR_TR1 |
|
- | 3581 | #define EXTI_FTSR_FT2 EXTI_FTSR_TR2 |
|
- | 3582 | #define EXTI_FTSR_FT3 EXTI_FTSR_TR3 |
|
- | 3583 | #define EXTI_FTSR_FT4 EXTI_FTSR_TR4 |
|
- | 3584 | #define EXTI_FTSR_FT5 EXTI_FTSR_TR5 |
|
- | 3585 | #define EXTI_FTSR_FT6 EXTI_FTSR_TR6 |
|
- | 3586 | #define EXTI_FTSR_FT7 EXTI_FTSR_TR7 |
|
- | 3587 | #define EXTI_FTSR_FT8 EXTI_FTSR_TR8 |
|
- | 3588 | #define EXTI_FTSR_FT9 EXTI_FTSR_TR9 |
|
- | 3589 | #define EXTI_FTSR_FT10 EXTI_FTSR_TR10 |
|
- | 3590 | #define EXTI_FTSR_FT11 EXTI_FTSR_TR11 |
|
- | 3591 | #define EXTI_FTSR_FT12 EXTI_FTSR_TR12 |
|
- | 3592 | #define EXTI_FTSR_FT13 EXTI_FTSR_TR13 |
|
- | 3593 | #define EXTI_FTSR_FT14 EXTI_FTSR_TR14 |
|
- | 3594 | #define EXTI_FTSR_FT15 EXTI_FTSR_TR15 |
|
- | 3595 | #define EXTI_FTSR_FT16 EXTI_FTSR_TR16 |
|
- | 3596 | #define EXTI_FTSR_FT17 EXTI_FTSR_TR17 |
|
- | 3597 | #define EXTI_FTSR_FT18 EXTI_FTSR_TR18 |
|
- | 3598 | #define EXTI_FTSR_FT19 EXTI_FTSR_TR19 |
|
2287 | 3599 | ||
2288 | /****************** Bit definition for EXTI_SWIER register ******************/ |
3600 | /****************** Bit definition for EXTI_SWIER register ******************/ |
- | 3601 | #define EXTI_SWIER_SWIER0_Pos (0U) |
|
- | 3602 | #define EXTI_SWIER_SWIER0_Msk (0x1U << EXTI_SWIER_SWIER0_Pos) /*!< 0x00000001 */ |
|
2289 | #define EXTI_SWIER_SWIER0 ((uint32_t)0x00000001) /*!< Software Interrupt on line 0 */ |
3603 | #define EXTI_SWIER_SWIER0 EXTI_SWIER_SWIER0_Msk /*!< Software Interrupt on line 0 */ |
- | 3604 | #define EXTI_SWIER_SWIER1_Pos (1U) |
|
- | 3605 | #define EXTI_SWIER_SWIER1_Msk (0x1U << EXTI_SWIER_SWIER1_Pos) /*!< 0x00000002 */ |
|
2290 | #define EXTI_SWIER_SWIER1 ((uint32_t)0x00000002) /*!< Software Interrupt on line 1 */ |
3606 | #define EXTI_SWIER_SWIER1 EXTI_SWIER_SWIER1_Msk /*!< Software Interrupt on line 1 */ |
- | 3607 | #define EXTI_SWIER_SWIER2_Pos (2U) |
|
- | 3608 | #define EXTI_SWIER_SWIER2_Msk (0x1U << EXTI_SWIER_SWIER2_Pos) /*!< 0x00000004 */ |
|
2291 | #define EXTI_SWIER_SWIER2 ((uint32_t)0x00000004) /*!< Software Interrupt on line 2 */ |
3609 | #define EXTI_SWIER_SWIER2 EXTI_SWIER_SWIER2_Msk /*!< Software Interrupt on line 2 */ |
- | 3610 | #define EXTI_SWIER_SWIER3_Pos (3U) |
|
- | 3611 | #define EXTI_SWIER_SWIER3_Msk (0x1U << EXTI_SWIER_SWIER3_Pos) /*!< 0x00000008 */ |
|
2292 | #define EXTI_SWIER_SWIER3 ((uint32_t)0x00000008) /*!< Software Interrupt on line 3 */ |
3612 | #define EXTI_SWIER_SWIER3 EXTI_SWIER_SWIER3_Msk /*!< Software Interrupt on line 3 */ |
- | 3613 | #define EXTI_SWIER_SWIER4_Pos (4U) |
|
- | 3614 | #define EXTI_SWIER_SWIER4_Msk (0x1U << EXTI_SWIER_SWIER4_Pos) /*!< 0x00000010 */ |
|
2293 | #define EXTI_SWIER_SWIER4 ((uint32_t)0x00000010) /*!< Software Interrupt on line 4 */ |
3615 | #define EXTI_SWIER_SWIER4 EXTI_SWIER_SWIER4_Msk /*!< Software Interrupt on line 4 */ |
- | 3616 | #define EXTI_SWIER_SWIER5_Pos (5U) |
|
- | 3617 | #define EXTI_SWIER_SWIER5_Msk (0x1U << EXTI_SWIER_SWIER5_Pos) /*!< 0x00000020 */ |
|
2294 | #define EXTI_SWIER_SWIER5 ((uint32_t)0x00000020) /*!< Software Interrupt on line 5 */ |
3618 | #define EXTI_SWIER_SWIER5 EXTI_SWIER_SWIER5_Msk /*!< Software Interrupt on line 5 */ |
- | 3619 | #define EXTI_SWIER_SWIER6_Pos (6U) |
|
- | 3620 | #define EXTI_SWIER_SWIER6_Msk (0x1U << EXTI_SWIER_SWIER6_Pos) /*!< 0x00000040 */ |
|
2295 | #define EXTI_SWIER_SWIER6 ((uint32_t)0x00000040) /*!< Software Interrupt on line 6 */ |
3621 | #define EXTI_SWIER_SWIER6 EXTI_SWIER_SWIER6_Msk /*!< Software Interrupt on line 6 */ |
- | 3622 | #define EXTI_SWIER_SWIER7_Pos (7U) |
|
- | 3623 | #define EXTI_SWIER_SWIER7_Msk (0x1U << EXTI_SWIER_SWIER7_Pos) /*!< 0x00000080 */ |
|
2296 | #define EXTI_SWIER_SWIER7 ((uint32_t)0x00000080) /*!< Software Interrupt on line 7 */ |
3624 | #define EXTI_SWIER_SWIER7 EXTI_SWIER_SWIER7_Msk /*!< Software Interrupt on line 7 */ |
- | 3625 | #define EXTI_SWIER_SWIER8_Pos (8U) |
|
- | 3626 | #define EXTI_SWIER_SWIER8_Msk (0x1U << EXTI_SWIER_SWIER8_Pos) /*!< 0x00000100 */ |
|
2297 | #define EXTI_SWIER_SWIER8 ((uint32_t)0x00000100) /*!< Software Interrupt on line 8 */ |
3627 | #define EXTI_SWIER_SWIER8 EXTI_SWIER_SWIER8_Msk /*!< Software Interrupt on line 8 */ |
- | 3628 | #define EXTI_SWIER_SWIER9_Pos (9U) |
|
- | 3629 | #define EXTI_SWIER_SWIER9_Msk (0x1U << EXTI_SWIER_SWIER9_Pos) /*!< 0x00000200 */ |
|
2298 | #define EXTI_SWIER_SWIER9 ((uint32_t)0x00000200) /*!< Software Interrupt on line 9 */ |
3630 | #define EXTI_SWIER_SWIER9 EXTI_SWIER_SWIER9_Msk /*!< Software Interrupt on line 9 */ |
- | 3631 | #define EXTI_SWIER_SWIER10_Pos (10U) |
|
- | 3632 | #define EXTI_SWIER_SWIER10_Msk (0x1U << EXTI_SWIER_SWIER10_Pos) /*!< 0x00000400 */ |
|
2299 | #define EXTI_SWIER_SWIER10 ((uint32_t)0x00000400) /*!< Software Interrupt on line 10 */ |
3633 | #define EXTI_SWIER_SWIER10 EXTI_SWIER_SWIER10_Msk /*!< Software Interrupt on line 10 */ |
- | 3634 | #define EXTI_SWIER_SWIER11_Pos (11U) |
|
- | 3635 | #define EXTI_SWIER_SWIER11_Msk (0x1U << EXTI_SWIER_SWIER11_Pos) /*!< 0x00000800 */ |
|
2300 | #define EXTI_SWIER_SWIER11 ((uint32_t)0x00000800) /*!< Software Interrupt on line 11 */ |
3636 | #define EXTI_SWIER_SWIER11 EXTI_SWIER_SWIER11_Msk /*!< Software Interrupt on line 11 */ |
- | 3637 | #define EXTI_SWIER_SWIER12_Pos (12U) |
|
- | 3638 | #define EXTI_SWIER_SWIER12_Msk (0x1U << EXTI_SWIER_SWIER12_Pos) /*!< 0x00001000 */ |
|
2301 | #define EXTI_SWIER_SWIER12 ((uint32_t)0x00001000) /*!< Software Interrupt on line 12 */ |
3639 | #define EXTI_SWIER_SWIER12 EXTI_SWIER_SWIER12_Msk /*!< Software Interrupt on line 12 */ |
- | 3640 | #define EXTI_SWIER_SWIER13_Pos (13U) |
|
- | 3641 | #define EXTI_SWIER_SWIER13_Msk (0x1U << EXTI_SWIER_SWIER13_Pos) /*!< 0x00002000 */ |
|
2302 | #define EXTI_SWIER_SWIER13 ((uint32_t)0x00002000) /*!< Software Interrupt on line 13 */ |
3642 | #define EXTI_SWIER_SWIER13 EXTI_SWIER_SWIER13_Msk /*!< Software Interrupt on line 13 */ |
- | 3643 | #define EXTI_SWIER_SWIER14_Pos (14U) |
|
- | 3644 | #define EXTI_SWIER_SWIER14_Msk (0x1U << EXTI_SWIER_SWIER14_Pos) /*!< 0x00004000 */ |
|
2303 | #define EXTI_SWIER_SWIER14 ((uint32_t)0x00004000) /*!< Software Interrupt on line 14 */ |
3645 | #define EXTI_SWIER_SWIER14 EXTI_SWIER_SWIER14_Msk /*!< Software Interrupt on line 14 */ |
- | 3646 | #define EXTI_SWIER_SWIER15_Pos (15U) |
|
- | 3647 | #define EXTI_SWIER_SWIER15_Msk (0x1U << EXTI_SWIER_SWIER15_Pos) /*!< 0x00008000 */ |
|
2304 | #define EXTI_SWIER_SWIER15 ((uint32_t)0x00008000) /*!< Software Interrupt on line 15 */ |
3648 | #define EXTI_SWIER_SWIER15 EXTI_SWIER_SWIER15_Msk /*!< Software Interrupt on line 15 */ |
- | 3649 | #define EXTI_SWIER_SWIER16_Pos (16U) |
|
- | 3650 | #define EXTI_SWIER_SWIER16_Msk (0x1U << EXTI_SWIER_SWIER16_Pos) /*!< 0x00010000 */ |
|
2305 | #define EXTI_SWIER_SWIER16 ((uint32_t)0x00010000) /*!< Software Interrupt on line 16 */ |
3651 | #define EXTI_SWIER_SWIER16 EXTI_SWIER_SWIER16_Msk /*!< Software Interrupt on line 16 */ |
- | 3652 | #define EXTI_SWIER_SWIER17_Pos (17U) |
|
- | 3653 | #define EXTI_SWIER_SWIER17_Msk (0x1U << EXTI_SWIER_SWIER17_Pos) /*!< 0x00020000 */ |
|
2306 | #define EXTI_SWIER_SWIER17 ((uint32_t)0x00020000) /*!< Software Interrupt on line 17 */ |
3654 | #define EXTI_SWIER_SWIER17 EXTI_SWIER_SWIER17_Msk /*!< Software Interrupt on line 17 */ |
- | 3655 | #define EXTI_SWIER_SWIER18_Pos (18U) |
|
- | 3656 | #define EXTI_SWIER_SWIER18_Msk (0x1U << EXTI_SWIER_SWIER18_Pos) /*!< 0x00040000 */ |
|
2307 | #define EXTI_SWIER_SWIER18 ((uint32_t)0x00040000) /*!< Software Interrupt on line 18 */ |
3657 | #define EXTI_SWIER_SWIER18 EXTI_SWIER_SWIER18_Msk /*!< Software Interrupt on line 18 */ |
- | 3658 | #define EXTI_SWIER_SWIER19_Pos (19U) |
|
- | 3659 | #define EXTI_SWIER_SWIER19_Msk (0x1U << EXTI_SWIER_SWIER19_Pos) /*!< 0x00080000 */ |
|
2308 | #define EXTI_SWIER_SWIER19 ((uint32_t)0x00080000) /*!< Software Interrupt on line 19 */ |
3660 | #define EXTI_SWIER_SWIER19 EXTI_SWIER_SWIER19_Msk /*!< Software Interrupt on line 19 */ |
- | 3661 | ||
- | 3662 | /* References Defines */ |
|
- | 3663 | #define EXTI_SWIER_SWI0 EXTI_SWIER_SWIER0 |
|
- | 3664 | #define EXTI_SWIER_SWI1 EXTI_SWIER_SWIER1 |
|
- | 3665 | #define EXTI_SWIER_SWI2 EXTI_SWIER_SWIER2 |
|
- | 3666 | #define EXTI_SWIER_SWI3 EXTI_SWIER_SWIER3 |
|
- | 3667 | #define EXTI_SWIER_SWI4 EXTI_SWIER_SWIER4 |
|
- | 3668 | #define EXTI_SWIER_SWI5 EXTI_SWIER_SWIER5 |
|
- | 3669 | #define EXTI_SWIER_SWI6 EXTI_SWIER_SWIER6 |
|
- | 3670 | #define EXTI_SWIER_SWI7 EXTI_SWIER_SWIER7 |
|
- | 3671 | #define EXTI_SWIER_SWI8 EXTI_SWIER_SWIER8 |
|
- | 3672 | #define EXTI_SWIER_SWI9 EXTI_SWIER_SWIER9 |
|
- | 3673 | #define EXTI_SWIER_SWI10 EXTI_SWIER_SWIER10 |
|
- | 3674 | #define EXTI_SWIER_SWI11 EXTI_SWIER_SWIER11 |
|
- | 3675 | #define EXTI_SWIER_SWI12 EXTI_SWIER_SWIER12 |
|
- | 3676 | #define EXTI_SWIER_SWI13 EXTI_SWIER_SWIER13 |
|
- | 3677 | #define EXTI_SWIER_SWI14 EXTI_SWIER_SWIER14 |
|
- | 3678 | #define EXTI_SWIER_SWI15 EXTI_SWIER_SWIER15 |
|
- | 3679 | #define EXTI_SWIER_SWI16 EXTI_SWIER_SWIER16 |
|
- | 3680 | #define EXTI_SWIER_SWI17 EXTI_SWIER_SWIER17 |
|
- | 3681 | #define EXTI_SWIER_SWI18 EXTI_SWIER_SWIER18 |
|
- | 3682 | #define EXTI_SWIER_SWI19 EXTI_SWIER_SWIER19 |
|
2309 | 3683 | ||
2310 | /******************* Bit definition for EXTI_PR register ********************/ |
3684 | /******************* Bit definition for EXTI_PR register ********************/ |
- | 3685 | #define EXTI_PR_PR0_Pos (0U) |
|
- | 3686 | #define EXTI_PR_PR0_Msk (0x1U << EXTI_PR_PR0_Pos) /*!< 0x00000001 */ |
|
2311 | #define EXTI_PR_PR0 ((uint32_t)0x00000001) /*!< Pending bit for line 0 */ |
3687 | #define EXTI_PR_PR0 EXTI_PR_PR0_Msk /*!< Pending bit for line 0 */ |
- | 3688 | #define EXTI_PR_PR1_Pos (1U) |
|
- | 3689 | #define EXTI_PR_PR1_Msk (0x1U << EXTI_PR_PR1_Pos) /*!< 0x00000002 */ |
|
2312 | #define EXTI_PR_PR1 ((uint32_t)0x00000002) /*!< Pending bit for line 1 */ |
3690 | #define EXTI_PR_PR1 EXTI_PR_PR1_Msk /*!< Pending bit for line 1 */ |
- | 3691 | #define EXTI_PR_PR2_Pos (2U) |
|
- | 3692 | #define EXTI_PR_PR2_Msk (0x1U << EXTI_PR_PR2_Pos) /*!< 0x00000004 */ |
|
2313 | #define EXTI_PR_PR2 ((uint32_t)0x00000004) /*!< Pending bit for line 2 */ |
3693 | #define EXTI_PR_PR2 EXTI_PR_PR2_Msk /*!< Pending bit for line 2 */ |
- | 3694 | #define EXTI_PR_PR3_Pos (3U) |
|
- | 3695 | #define EXTI_PR_PR3_Msk (0x1U << EXTI_PR_PR3_Pos) /*!< 0x00000008 */ |
|
2314 | #define EXTI_PR_PR3 ((uint32_t)0x00000008) /*!< Pending bit for line 3 */ |
3696 | #define EXTI_PR_PR3 EXTI_PR_PR3_Msk /*!< Pending bit for line 3 */ |
- | 3697 | #define EXTI_PR_PR4_Pos (4U) |
|
- | 3698 | #define EXTI_PR_PR4_Msk (0x1U << EXTI_PR_PR4_Pos) /*!< 0x00000010 */ |
|
2315 | #define EXTI_PR_PR4 ((uint32_t)0x00000010) /*!< Pending bit for line 4 */ |
3699 | #define EXTI_PR_PR4 EXTI_PR_PR4_Msk /*!< Pending bit for line 4 */ |
- | 3700 | #define EXTI_PR_PR5_Pos (5U) |
|
- | 3701 | #define EXTI_PR_PR5_Msk (0x1U << EXTI_PR_PR5_Pos) /*!< 0x00000020 */ |
|
2316 | #define EXTI_PR_PR5 ((uint32_t)0x00000020) /*!< Pending bit for line 5 */ |
3702 | #define EXTI_PR_PR5 EXTI_PR_PR5_Msk /*!< Pending bit for line 5 */ |
- | 3703 | #define EXTI_PR_PR6_Pos (6U) |
|
- | 3704 | #define EXTI_PR_PR6_Msk (0x1U << EXTI_PR_PR6_Pos) /*!< 0x00000040 */ |
|
2317 | #define EXTI_PR_PR6 ((uint32_t)0x00000040) /*!< Pending bit for line 6 */ |
3705 | #define EXTI_PR_PR6 EXTI_PR_PR6_Msk /*!< Pending bit for line 6 */ |
- | 3706 | #define EXTI_PR_PR7_Pos (7U) |
|
- | 3707 | #define EXTI_PR_PR7_Msk (0x1U << EXTI_PR_PR7_Pos) /*!< 0x00000080 */ |
|
2318 | #define EXTI_PR_PR7 ((uint32_t)0x00000080) /*!< Pending bit for line 7 */ |
3708 | #define EXTI_PR_PR7 EXTI_PR_PR7_Msk /*!< Pending bit for line 7 */ |
- | 3709 | #define EXTI_PR_PR8_Pos (8U) |
|
- | 3710 | #define EXTI_PR_PR8_Msk (0x1U << EXTI_PR_PR8_Pos) /*!< 0x00000100 */ |
|
2319 | #define EXTI_PR_PR8 ((uint32_t)0x00000100) /*!< Pending bit for line 8 */ |
3711 | #define EXTI_PR_PR8 EXTI_PR_PR8_Msk /*!< Pending bit for line 8 */ |
- | 3712 | #define EXTI_PR_PR9_Pos (9U) |
|
- | 3713 | #define EXTI_PR_PR9_Msk (0x1U << EXTI_PR_PR9_Pos) /*!< 0x00000200 */ |
|
2320 | #define EXTI_PR_PR9 ((uint32_t)0x00000200) /*!< Pending bit for line 9 */ |
3714 | #define EXTI_PR_PR9 EXTI_PR_PR9_Msk /*!< Pending bit for line 9 */ |
- | 3715 | #define EXTI_PR_PR10_Pos (10U) |
|
- | 3716 | #define EXTI_PR_PR10_Msk (0x1U << EXTI_PR_PR10_Pos) /*!< 0x00000400 */ |
|
2321 | #define EXTI_PR_PR10 ((uint32_t)0x00000400) /*!< Pending bit for line 10 */ |
3717 | #define EXTI_PR_PR10 EXTI_PR_PR10_Msk /*!< Pending bit for line 10 */ |
- | 3718 | #define EXTI_PR_PR11_Pos (11U) |
|
- | 3719 | #define EXTI_PR_PR11_Msk (0x1U << EXTI_PR_PR11_Pos) /*!< 0x00000800 */ |
|
2322 | #define EXTI_PR_PR11 ((uint32_t)0x00000800) /*!< Pending bit for line 11 */ |
3720 | #define EXTI_PR_PR11 EXTI_PR_PR11_Msk /*!< Pending bit for line 11 */ |
- | 3721 | #define EXTI_PR_PR12_Pos (12U) |
|
- | 3722 | #define EXTI_PR_PR12_Msk (0x1U << EXTI_PR_PR12_Pos) /*!< 0x00001000 */ |
|
2323 | #define EXTI_PR_PR12 ((uint32_t)0x00001000) /*!< Pending bit for line 12 */ |
3723 | #define EXTI_PR_PR12 EXTI_PR_PR12_Msk /*!< Pending bit for line 12 */ |
- | 3724 | #define EXTI_PR_PR13_Pos (13U) |
|
- | 3725 | #define EXTI_PR_PR13_Msk (0x1U << EXTI_PR_PR13_Pos) /*!< 0x00002000 */ |
|
2324 | #define EXTI_PR_PR13 ((uint32_t)0x00002000) /*!< Pending bit for line 13 */ |
3726 | #define EXTI_PR_PR13 EXTI_PR_PR13_Msk /*!< Pending bit for line 13 */ |
- | 3727 | #define EXTI_PR_PR14_Pos (14U) |
|
- | 3728 | #define EXTI_PR_PR14_Msk (0x1U << EXTI_PR_PR14_Pos) /*!< 0x00004000 */ |
|
2325 | #define EXTI_PR_PR14 ((uint32_t)0x00004000) /*!< Pending bit for line 14 */ |
3729 | #define EXTI_PR_PR14 EXTI_PR_PR14_Msk /*!< Pending bit for line 14 */ |
- | 3730 | #define EXTI_PR_PR15_Pos (15U) |
|
- | 3731 | #define EXTI_PR_PR15_Msk (0x1U << EXTI_PR_PR15_Pos) /*!< 0x00008000 */ |
|
2326 | #define EXTI_PR_PR15 ((uint32_t)0x00008000) /*!< Pending bit for line 15 */ |
3732 | #define EXTI_PR_PR15 EXTI_PR_PR15_Msk /*!< Pending bit for line 15 */ |
- | 3733 | #define EXTI_PR_PR16_Pos (16U) |
|
- | 3734 | #define EXTI_PR_PR16_Msk (0x1U << EXTI_PR_PR16_Pos) /*!< 0x00010000 */ |
|
2327 | #define EXTI_PR_PR16 ((uint32_t)0x00010000) /*!< Pending bit for line 16 */ |
3735 | #define EXTI_PR_PR16 EXTI_PR_PR16_Msk /*!< Pending bit for line 16 */ |
- | 3736 | #define EXTI_PR_PR17_Pos (17U) |
|
- | 3737 | #define EXTI_PR_PR17_Msk (0x1U << EXTI_PR_PR17_Pos) /*!< 0x00020000 */ |
|
2328 | #define EXTI_PR_PR17 ((uint32_t)0x00020000) /*!< Pending bit for line 17 */ |
3738 | #define EXTI_PR_PR17 EXTI_PR_PR17_Msk /*!< Pending bit for line 17 */ |
- | 3739 | #define EXTI_PR_PR18_Pos (18U) |
|
- | 3740 | #define EXTI_PR_PR18_Msk (0x1U << EXTI_PR_PR18_Pos) /*!< 0x00040000 */ |
|
2329 | #define EXTI_PR_PR18 ((uint32_t)0x00040000) /*!< Pending bit for line 18 */ |
3741 | #define EXTI_PR_PR18 EXTI_PR_PR18_Msk /*!< Pending bit for line 18 */ |
- | 3742 | #define EXTI_PR_PR19_Pos (19U) |
|
- | 3743 | #define EXTI_PR_PR19_Msk (0x1U << EXTI_PR_PR19_Pos) /*!< 0x00080000 */ |
|
2330 | #define EXTI_PR_PR19 ((uint32_t)0x00080000) /*!< Pending bit for line 19 */ |
3744 | #define EXTI_PR_PR19 EXTI_PR_PR19_Msk /*!< Pending bit for line 19 */ |
- | 3745 | ||
- | 3746 | /* References Defines */ |
|
- | 3747 | #define EXTI_PR_PIF0 EXTI_PR_PR0 |
|
- | 3748 | #define EXTI_PR_PIF1 EXTI_PR_PR1 |
|
- | 3749 | #define EXTI_PR_PIF2 EXTI_PR_PR2 |
|
- | 3750 | #define EXTI_PR_PIF3 EXTI_PR_PR3 |
|
- | 3751 | #define EXTI_PR_PIF4 EXTI_PR_PR4 |
|
- | 3752 | #define EXTI_PR_PIF5 EXTI_PR_PR5 |
|
- | 3753 | #define EXTI_PR_PIF6 EXTI_PR_PR6 |
|
- | 3754 | #define EXTI_PR_PIF7 EXTI_PR_PR7 |
|
- | 3755 | #define EXTI_PR_PIF8 EXTI_PR_PR8 |
|
- | 3756 | #define EXTI_PR_PIF9 EXTI_PR_PR9 |
|
- | 3757 | #define EXTI_PR_PIF10 EXTI_PR_PR10 |
|
- | 3758 | #define EXTI_PR_PIF11 EXTI_PR_PR11 |
|
- | 3759 | #define EXTI_PR_PIF12 EXTI_PR_PR12 |
|
- | 3760 | #define EXTI_PR_PIF13 EXTI_PR_PR13 |
|
- | 3761 | #define EXTI_PR_PIF14 EXTI_PR_PR14 |
|
- | 3762 | #define EXTI_PR_PIF15 EXTI_PR_PR15 |
|
- | 3763 | #define EXTI_PR_PIF16 EXTI_PR_PR16 |
|
- | 3764 | #define EXTI_PR_PIF17 EXTI_PR_PR17 |
|
- | 3765 | #define EXTI_PR_PIF18 EXTI_PR_PR18 |
|
- | 3766 | #define EXTI_PR_PIF19 EXTI_PR_PR19 |
|
2331 | 3767 | ||
2332 | /******************************************************************************/ |
3768 | /******************************************************************************/ |
2333 | /* */ |
3769 | /* */ |
2334 | /* DMA Controller */ |
3770 | /* DMA Controller */ |
2335 | /* */ |
3771 | /* */ |
2336 | /******************************************************************************/ |
3772 | /******************************************************************************/ |
2337 | 3773 | ||
2338 | /******************* Bit definition for DMA_ISR register ********************/ |
3774 | /******************* Bit definition for DMA_ISR register ********************/ |
- | 3775 | #define DMA_ISR_GIF1_Pos (0U) |
|
- | 3776 | #define DMA_ISR_GIF1_Msk (0x1U << DMA_ISR_GIF1_Pos) /*!< 0x00000001 */ |
|
2339 | #define DMA_ISR_GIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt flag */ |
3777 | #define DMA_ISR_GIF1 DMA_ISR_GIF1_Msk /*!< Channel 1 Global interrupt flag */ |
- | 3778 | #define DMA_ISR_TCIF1_Pos (1U) |
|
- | 3779 | #define DMA_ISR_TCIF1_Msk (0x1U << DMA_ISR_TCIF1_Pos) /*!< 0x00000002 */ |
|
2340 | #define DMA_ISR_TCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete flag */ |
3780 | #define DMA_ISR_TCIF1 DMA_ISR_TCIF1_Msk /*!< Channel 1 Transfer Complete flag */ |
- | 3781 | #define DMA_ISR_HTIF1_Pos (2U) |
|
- | 3782 | #define DMA_ISR_HTIF1_Msk (0x1U << DMA_ISR_HTIF1_Pos) /*!< 0x00000004 */ |
|
2341 | #define DMA_ISR_HTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer flag */ |
3783 | #define DMA_ISR_HTIF1 DMA_ISR_HTIF1_Msk /*!< Channel 1 Half Transfer flag */ |
- | 3784 | #define DMA_ISR_TEIF1_Pos (3U) |
|
- | 3785 | #define DMA_ISR_TEIF1_Msk (0x1U << DMA_ISR_TEIF1_Pos) /*!< 0x00000008 */ |
|
2342 | #define DMA_ISR_TEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error flag */ |
3786 | #define DMA_ISR_TEIF1 DMA_ISR_TEIF1_Msk /*!< Channel 1 Transfer Error flag */ |
- | 3787 | #define DMA_ISR_GIF2_Pos (4U) |
|
- | 3788 | #define DMA_ISR_GIF2_Msk (0x1U << DMA_ISR_GIF2_Pos) /*!< 0x00000010 */ |
|
2343 | #define DMA_ISR_GIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt flag */ |
3789 | #define DMA_ISR_GIF2 DMA_ISR_GIF2_Msk /*!< Channel 2 Global interrupt flag */ |
- | 3790 | #define DMA_ISR_TCIF2_Pos (5U) |
|
- | 3791 | #define DMA_ISR_TCIF2_Msk (0x1U << DMA_ISR_TCIF2_Pos) /*!< 0x00000020 */ |
|
2344 | #define DMA_ISR_TCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete flag */ |
3792 | #define DMA_ISR_TCIF2 DMA_ISR_TCIF2_Msk /*!< Channel 2 Transfer Complete flag */ |
- | 3793 | #define DMA_ISR_HTIF2_Pos (6U) |
|
- | 3794 | #define DMA_ISR_HTIF2_Msk (0x1U << DMA_ISR_HTIF2_Pos) /*!< 0x00000040 */ |
|
2345 | #define DMA_ISR_HTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer flag */ |
3795 | #define DMA_ISR_HTIF2 DMA_ISR_HTIF2_Msk /*!< Channel 2 Half Transfer flag */ |
- | 3796 | #define DMA_ISR_TEIF2_Pos (7U) |
|
- | 3797 | #define DMA_ISR_TEIF2_Msk (0x1U << DMA_ISR_TEIF2_Pos) /*!< 0x00000080 */ |
|
2346 | #define DMA_ISR_TEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error flag */ |
3798 | #define DMA_ISR_TEIF2 DMA_ISR_TEIF2_Msk /*!< Channel 2 Transfer Error flag */ |
- | 3799 | #define DMA_ISR_GIF3_Pos (8U) |
|
- | 3800 | #define DMA_ISR_GIF3_Msk (0x1U << DMA_ISR_GIF3_Pos) /*!< 0x00000100 */ |
|
2347 | #define DMA_ISR_GIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt flag */ |
3801 | #define DMA_ISR_GIF3 DMA_ISR_GIF3_Msk /*!< Channel 3 Global interrupt flag */ |
- | 3802 | #define DMA_ISR_TCIF3_Pos (9U) |
|
- | 3803 | #define DMA_ISR_TCIF3_Msk (0x1U << DMA_ISR_TCIF3_Pos) /*!< 0x00000200 */ |
|
2348 | #define DMA_ISR_TCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete flag */ |
3804 | #define DMA_ISR_TCIF3 DMA_ISR_TCIF3_Msk /*!< Channel 3 Transfer Complete flag */ |
- | 3805 | #define DMA_ISR_HTIF3_Pos (10U) |
|
- | 3806 | #define DMA_ISR_HTIF3_Msk (0x1U << DMA_ISR_HTIF3_Pos) /*!< 0x00000400 */ |
|
2349 | #define DMA_ISR_HTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer flag */ |
3807 | #define DMA_ISR_HTIF3 DMA_ISR_HTIF3_Msk /*!< Channel 3 Half Transfer flag */ |
- | 3808 | #define DMA_ISR_TEIF3_Pos (11U) |
|
- | 3809 | #define DMA_ISR_TEIF3_Msk (0x1U << DMA_ISR_TEIF3_Pos) /*!< 0x00000800 */ |
|
2350 | #define DMA_ISR_TEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error flag */ |
3810 | #define DMA_ISR_TEIF3 DMA_ISR_TEIF3_Msk /*!< Channel 3 Transfer Error flag */ |
- | 3811 | #define DMA_ISR_GIF4_Pos (12U) |
|
- | 3812 | #define DMA_ISR_GIF4_Msk (0x1U << DMA_ISR_GIF4_Pos) /*!< 0x00001000 */ |
|
2351 | #define DMA_ISR_GIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt flag */ |
3813 | #define DMA_ISR_GIF4 DMA_ISR_GIF4_Msk /*!< Channel 4 Global interrupt flag */ |
- | 3814 | #define DMA_ISR_TCIF4_Pos (13U) |
|
- | 3815 | #define DMA_ISR_TCIF4_Msk (0x1U << DMA_ISR_TCIF4_Pos) /*!< 0x00002000 */ |
|
2352 | #define DMA_ISR_TCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete flag */ |
3816 | #define DMA_ISR_TCIF4 DMA_ISR_TCIF4_Msk /*!< Channel 4 Transfer Complete flag */ |
- | 3817 | #define DMA_ISR_HTIF4_Pos (14U) |
|
- | 3818 | #define DMA_ISR_HTIF4_Msk (0x1U << DMA_ISR_HTIF4_Pos) /*!< 0x00004000 */ |
|
2353 | #define DMA_ISR_HTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer flag */ |
3819 | #define DMA_ISR_HTIF4 DMA_ISR_HTIF4_Msk /*!< Channel 4 Half Transfer flag */ |
- | 3820 | #define DMA_ISR_TEIF4_Pos (15U) |
|
- | 3821 | #define DMA_ISR_TEIF4_Msk (0x1U << DMA_ISR_TEIF4_Pos) /*!< 0x00008000 */ |
|
2354 | #define DMA_ISR_TEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error flag */ |
3822 | #define DMA_ISR_TEIF4 DMA_ISR_TEIF4_Msk /*!< Channel 4 Transfer Error flag */ |
- | 3823 | #define DMA_ISR_GIF5_Pos (16U) |
|
- | 3824 | #define DMA_ISR_GIF5_Msk (0x1U << DMA_ISR_GIF5_Pos) /*!< 0x00010000 */ |
|
2355 | #define DMA_ISR_GIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt flag */ |
3825 | #define DMA_ISR_GIF5 DMA_ISR_GIF5_Msk /*!< Channel 5 Global interrupt flag */ |
- | 3826 | #define DMA_ISR_TCIF5_Pos (17U) |
|
- | 3827 | #define DMA_ISR_TCIF5_Msk (0x1U << DMA_ISR_TCIF5_Pos) /*!< 0x00020000 */ |
|
2356 | #define DMA_ISR_TCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete flag */ |
3828 | #define DMA_ISR_TCIF5 DMA_ISR_TCIF5_Msk /*!< Channel 5 Transfer Complete flag */ |
- | 3829 | #define DMA_ISR_HTIF5_Pos (18U) |
|
- | 3830 | #define DMA_ISR_HTIF5_Msk (0x1U << DMA_ISR_HTIF5_Pos) /*!< 0x00040000 */ |
|
2357 | #define DMA_ISR_HTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer flag */ |
3831 | #define DMA_ISR_HTIF5 DMA_ISR_HTIF5_Msk /*!< Channel 5 Half Transfer flag */ |
- | 3832 | #define DMA_ISR_TEIF5_Pos (19U) |
|
- | 3833 | #define DMA_ISR_TEIF5_Msk (0x1U << DMA_ISR_TEIF5_Pos) /*!< 0x00080000 */ |
|
2358 | #define DMA_ISR_TEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error flag */ |
3834 | #define DMA_ISR_TEIF5 DMA_ISR_TEIF5_Msk /*!< Channel 5 Transfer Error flag */ |
- | 3835 | #define DMA_ISR_GIF6_Pos (20U) |
|
- | 3836 | #define DMA_ISR_GIF6_Msk (0x1U << DMA_ISR_GIF6_Pos) /*!< 0x00100000 */ |
|
2359 | #define DMA_ISR_GIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt flag */ |
3837 | #define DMA_ISR_GIF6 DMA_ISR_GIF6_Msk /*!< Channel 6 Global interrupt flag */ |
- | 3838 | #define DMA_ISR_TCIF6_Pos (21U) |
|
- | 3839 | #define DMA_ISR_TCIF6_Msk (0x1U << DMA_ISR_TCIF6_Pos) /*!< 0x00200000 */ |
|
2360 | #define DMA_ISR_TCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete flag */ |
3840 | #define DMA_ISR_TCIF6 DMA_ISR_TCIF6_Msk /*!< Channel 6 Transfer Complete flag */ |
- | 3841 | #define DMA_ISR_HTIF6_Pos (22U) |
|
- | 3842 | #define DMA_ISR_HTIF6_Msk (0x1U << DMA_ISR_HTIF6_Pos) /*!< 0x00400000 */ |
|
2361 | #define DMA_ISR_HTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer flag */ |
3843 | #define DMA_ISR_HTIF6 DMA_ISR_HTIF6_Msk /*!< Channel 6 Half Transfer flag */ |
- | 3844 | #define DMA_ISR_TEIF6_Pos (23U) |
|
- | 3845 | #define DMA_ISR_TEIF6_Msk (0x1U << DMA_ISR_TEIF6_Pos) /*!< 0x00800000 */ |
|
2362 | #define DMA_ISR_TEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error flag */ |
3846 | #define DMA_ISR_TEIF6 DMA_ISR_TEIF6_Msk /*!< Channel 6 Transfer Error flag */ |
- | 3847 | #define DMA_ISR_GIF7_Pos (24U) |
|
- | 3848 | #define DMA_ISR_GIF7_Msk (0x1U << DMA_ISR_GIF7_Pos) /*!< 0x01000000 */ |
|
2363 | #define DMA_ISR_GIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt flag */ |
3849 | #define DMA_ISR_GIF7 DMA_ISR_GIF7_Msk /*!< Channel 7 Global interrupt flag */ |
- | 3850 | #define DMA_ISR_TCIF7_Pos (25U) |
|
- | 3851 | #define DMA_ISR_TCIF7_Msk (0x1U << DMA_ISR_TCIF7_Pos) /*!< 0x02000000 */ |
|
2364 | #define DMA_ISR_TCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete flag */ |
3852 | #define DMA_ISR_TCIF7 DMA_ISR_TCIF7_Msk /*!< Channel 7 Transfer Complete flag */ |
- | 3853 | #define DMA_ISR_HTIF7_Pos (26U) |
|
- | 3854 | #define DMA_ISR_HTIF7_Msk (0x1U << DMA_ISR_HTIF7_Pos) /*!< 0x04000000 */ |
|
2365 | #define DMA_ISR_HTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer flag */ |
3855 | #define DMA_ISR_HTIF7 DMA_ISR_HTIF7_Msk /*!< Channel 7 Half Transfer flag */ |
- | 3856 | #define DMA_ISR_TEIF7_Pos (27U) |
|
- | 3857 | #define DMA_ISR_TEIF7_Msk (0x1U << DMA_ISR_TEIF7_Pos) /*!< 0x08000000 */ |
|
2366 | #define DMA_ISR_TEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error flag */ |
3858 | #define DMA_ISR_TEIF7 DMA_ISR_TEIF7_Msk /*!< Channel 7 Transfer Error flag */ |
2367 | 3859 | ||
2368 | /******************* Bit definition for DMA_IFCR register *******************/ |
3860 | /******************* Bit definition for DMA_IFCR register *******************/ |
- | 3861 | #define DMA_IFCR_CGIF1_Pos (0U) |
|
- | 3862 | #define DMA_IFCR_CGIF1_Msk (0x1U << DMA_IFCR_CGIF1_Pos) /*!< 0x00000001 */ |
|
2369 | #define DMA_IFCR_CGIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt clear */ |
3863 | #define DMA_IFCR_CGIF1 DMA_IFCR_CGIF1_Msk /*!< Channel 1 Global interrupt clear */ |
- | 3864 | #define DMA_IFCR_CTCIF1_Pos (1U) |
|
- | 3865 | #define DMA_IFCR_CTCIF1_Msk (0x1U << DMA_IFCR_CTCIF1_Pos) /*!< 0x00000002 */ |
|
2370 | #define DMA_IFCR_CTCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete clear */ |
3866 | #define DMA_IFCR_CTCIF1 DMA_IFCR_CTCIF1_Msk /*!< Channel 1 Transfer Complete clear */ |
- | 3867 | #define DMA_IFCR_CHTIF1_Pos (2U) |
|
- | 3868 | #define DMA_IFCR_CHTIF1_Msk (0x1U << DMA_IFCR_CHTIF1_Pos) /*!< 0x00000004 */ |
|
2371 | #define DMA_IFCR_CHTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer clear */ |
3869 | #define DMA_IFCR_CHTIF1 DMA_IFCR_CHTIF1_Msk /*!< Channel 1 Half Transfer clear */ |
- | 3870 | #define DMA_IFCR_CTEIF1_Pos (3U) |
|
- | 3871 | #define DMA_IFCR_CTEIF1_Msk (0x1U << DMA_IFCR_CTEIF1_Pos) /*!< 0x00000008 */ |
|
2372 | #define DMA_IFCR_CTEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error clear */ |
3872 | #define DMA_IFCR_CTEIF1 DMA_IFCR_CTEIF1_Msk /*!< Channel 1 Transfer Error clear */ |
- | 3873 | #define DMA_IFCR_CGIF2_Pos (4U) |
|
- | 3874 | #define DMA_IFCR_CGIF2_Msk (0x1U << DMA_IFCR_CGIF2_Pos) /*!< 0x00000010 */ |
|
2373 | #define DMA_IFCR_CGIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt clear */ |
3875 | #define DMA_IFCR_CGIF2 DMA_IFCR_CGIF2_Msk /*!< Channel 2 Global interrupt clear */ |
- | 3876 | #define DMA_IFCR_CTCIF2_Pos (5U) |
|
- | 3877 | #define DMA_IFCR_CTCIF2_Msk (0x1U << DMA_IFCR_CTCIF2_Pos) /*!< 0x00000020 */ |
|
2374 | #define DMA_IFCR_CTCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete clear */ |
3878 | #define DMA_IFCR_CTCIF2 DMA_IFCR_CTCIF2_Msk /*!< Channel 2 Transfer Complete clear */ |
- | 3879 | #define DMA_IFCR_CHTIF2_Pos (6U) |
|
- | 3880 | #define DMA_IFCR_CHTIF2_Msk (0x1U << DMA_IFCR_CHTIF2_Pos) /*!< 0x00000040 */ |
|
2375 | #define DMA_IFCR_CHTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer clear */ |
3881 | #define DMA_IFCR_CHTIF2 DMA_IFCR_CHTIF2_Msk /*!< Channel 2 Half Transfer clear */ |
- | 3882 | #define DMA_IFCR_CTEIF2_Pos (7U) |
|
- | 3883 | #define DMA_IFCR_CTEIF2_Msk (0x1U << DMA_IFCR_CTEIF2_Pos) /*!< 0x00000080 */ |
|
2376 | #define DMA_IFCR_CTEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error clear */ |
3884 | #define DMA_IFCR_CTEIF2 DMA_IFCR_CTEIF2_Msk /*!< Channel 2 Transfer Error clear */ |
- | 3885 | #define DMA_IFCR_CGIF3_Pos (8U) |
|
- | 3886 | #define DMA_IFCR_CGIF3_Msk (0x1U << DMA_IFCR_CGIF3_Pos) /*!< 0x00000100 */ |
|
2377 | #define DMA_IFCR_CGIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt clear */ |
3887 | #define DMA_IFCR_CGIF3 DMA_IFCR_CGIF3_Msk /*!< Channel 3 Global interrupt clear */ |
- | 3888 | #define DMA_IFCR_CTCIF3_Pos (9U) |
|
- | 3889 | #define DMA_IFCR_CTCIF3_Msk (0x1U << DMA_IFCR_CTCIF3_Pos) /*!< 0x00000200 */ |
|
2378 | #define DMA_IFCR_CTCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete clear */ |
3890 | #define DMA_IFCR_CTCIF3 DMA_IFCR_CTCIF3_Msk /*!< Channel 3 Transfer Complete clear */ |
- | 3891 | #define DMA_IFCR_CHTIF3_Pos (10U) |
|
- | 3892 | #define DMA_IFCR_CHTIF3_Msk (0x1U << DMA_IFCR_CHTIF3_Pos) /*!< 0x00000400 */ |
|
2379 | #define DMA_IFCR_CHTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer clear */ |
3893 | #define DMA_IFCR_CHTIF3 DMA_IFCR_CHTIF3_Msk /*!< Channel 3 Half Transfer clear */ |
- | 3894 | #define DMA_IFCR_CTEIF3_Pos (11U) |
|
- | 3895 | #define DMA_IFCR_CTEIF3_Msk (0x1U << DMA_IFCR_CTEIF3_Pos) /*!< 0x00000800 */ |
|
2380 | #define DMA_IFCR_CTEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error clear */ |
3896 | #define DMA_IFCR_CTEIF3 DMA_IFCR_CTEIF3_Msk /*!< Channel 3 Transfer Error clear */ |
- | 3897 | #define DMA_IFCR_CGIF4_Pos (12U) |
|
- | 3898 | #define DMA_IFCR_CGIF4_Msk (0x1U << DMA_IFCR_CGIF4_Pos) /*!< 0x00001000 */ |
|
2381 | #define DMA_IFCR_CGIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt clear */ |
3899 | #define DMA_IFCR_CGIF4 DMA_IFCR_CGIF4_Msk /*!< Channel 4 Global interrupt clear */ |
- | 3900 | #define DMA_IFCR_CTCIF4_Pos (13U) |
|
- | 3901 | #define DMA_IFCR_CTCIF4_Msk (0x1U << DMA_IFCR_CTCIF4_Pos) /*!< 0x00002000 */ |
|
2382 | #define DMA_IFCR_CTCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete clear */ |
3902 | #define DMA_IFCR_CTCIF4 DMA_IFCR_CTCIF4_Msk /*!< Channel 4 Transfer Complete clear */ |
- | 3903 | #define DMA_IFCR_CHTIF4_Pos (14U) |
|
- | 3904 | #define DMA_IFCR_CHTIF4_Msk (0x1U << DMA_IFCR_CHTIF4_Pos) /*!< 0x00004000 */ |
|
2383 | #define DMA_IFCR_CHTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer clear */ |
3905 | #define DMA_IFCR_CHTIF4 DMA_IFCR_CHTIF4_Msk /*!< Channel 4 Half Transfer clear */ |
- | 3906 | #define DMA_IFCR_CTEIF4_Pos (15U) |
|
- | 3907 | #define DMA_IFCR_CTEIF4_Msk (0x1U << DMA_IFCR_CTEIF4_Pos) /*!< 0x00008000 */ |
|
2384 | #define DMA_IFCR_CTEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error clear */ |
3908 | #define DMA_IFCR_CTEIF4 DMA_IFCR_CTEIF4_Msk /*!< Channel 4 Transfer Error clear */ |
- | 3909 | #define DMA_IFCR_CGIF5_Pos (16U) |
|
- | 3910 | #define DMA_IFCR_CGIF5_Msk (0x1U << DMA_IFCR_CGIF5_Pos) /*!< 0x00010000 */ |
|
2385 | #define DMA_IFCR_CGIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt clear */ |
3911 | #define DMA_IFCR_CGIF5 DMA_IFCR_CGIF5_Msk /*!< Channel 5 Global interrupt clear */ |
- | 3912 | #define DMA_IFCR_CTCIF5_Pos (17U) |
|
- | 3913 | #define DMA_IFCR_CTCIF5_Msk (0x1U << DMA_IFCR_CTCIF5_Pos) /*!< 0x00020000 */ |
|
2386 | #define DMA_IFCR_CTCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete clear */ |
3914 | #define DMA_IFCR_CTCIF5 DMA_IFCR_CTCIF5_Msk /*!< Channel 5 Transfer Complete clear */ |
- | 3915 | #define DMA_IFCR_CHTIF5_Pos (18U) |
|
- | 3916 | #define DMA_IFCR_CHTIF5_Msk (0x1U << DMA_IFCR_CHTIF5_Pos) /*!< 0x00040000 */ |
|
2387 | #define DMA_IFCR_CHTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer clear */ |
3917 | #define DMA_IFCR_CHTIF5 DMA_IFCR_CHTIF5_Msk /*!< Channel 5 Half Transfer clear */ |
- | 3918 | #define DMA_IFCR_CTEIF5_Pos (19U) |
|
- | 3919 | #define DMA_IFCR_CTEIF5_Msk (0x1U << DMA_IFCR_CTEIF5_Pos) /*!< 0x00080000 */ |
|
2388 | #define DMA_IFCR_CTEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error clear */ |
3920 | #define DMA_IFCR_CTEIF5 DMA_IFCR_CTEIF5_Msk /*!< Channel 5 Transfer Error clear */ |
- | 3921 | #define DMA_IFCR_CGIF6_Pos (20U) |
|
- | 3922 | #define DMA_IFCR_CGIF6_Msk (0x1U << DMA_IFCR_CGIF6_Pos) /*!< 0x00100000 */ |
|
2389 | #define DMA_IFCR_CGIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt clear */ |
3923 | #define DMA_IFCR_CGIF6 DMA_IFCR_CGIF6_Msk /*!< Channel 6 Global interrupt clear */ |
- | 3924 | #define DMA_IFCR_CTCIF6_Pos (21U) |
|
- | 3925 | #define DMA_IFCR_CTCIF6_Msk (0x1U << DMA_IFCR_CTCIF6_Pos) /*!< 0x00200000 */ |
|
2390 | #define DMA_IFCR_CTCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete clear */ |
3926 | #define DMA_IFCR_CTCIF6 DMA_IFCR_CTCIF6_Msk /*!< Channel 6 Transfer Complete clear */ |
- | 3927 | #define DMA_IFCR_CHTIF6_Pos (22U) |
|
- | 3928 | #define DMA_IFCR_CHTIF6_Msk (0x1U << DMA_IFCR_CHTIF6_Pos) /*!< 0x00400000 */ |
|
2391 | #define DMA_IFCR_CHTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer clear */ |
3929 | #define DMA_IFCR_CHTIF6 DMA_IFCR_CHTIF6_Msk /*!< Channel 6 Half Transfer clear */ |
- | 3930 | #define DMA_IFCR_CTEIF6_Pos (23U) |
|
- | 3931 | #define DMA_IFCR_CTEIF6_Msk (0x1U << DMA_IFCR_CTEIF6_Pos) /*!< 0x00800000 */ |
|
2392 | #define DMA_IFCR_CTEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error clear */ |
3932 | #define DMA_IFCR_CTEIF6 DMA_IFCR_CTEIF6_Msk /*!< Channel 6 Transfer Error clear */ |
- | 3933 | #define DMA_IFCR_CGIF7_Pos (24U) |
|
- | 3934 | #define DMA_IFCR_CGIF7_Msk (0x1U << DMA_IFCR_CGIF7_Pos) /*!< 0x01000000 */ |
|
2393 | #define DMA_IFCR_CGIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt clear */ |
3935 | #define DMA_IFCR_CGIF7 DMA_IFCR_CGIF7_Msk /*!< Channel 7 Global interrupt clear */ |
- | 3936 | #define DMA_IFCR_CTCIF7_Pos (25U) |
|
- | 3937 | #define DMA_IFCR_CTCIF7_Msk (0x1U << DMA_IFCR_CTCIF7_Pos) /*!< 0x02000000 */ |
|
2394 | #define DMA_IFCR_CTCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete clear */ |
3938 | #define DMA_IFCR_CTCIF7 DMA_IFCR_CTCIF7_Msk /*!< Channel 7 Transfer Complete clear */ |
- | 3939 | #define DMA_IFCR_CHTIF7_Pos (26U) |
|
- | 3940 | #define DMA_IFCR_CHTIF7_Msk (0x1U << DMA_IFCR_CHTIF7_Pos) /*!< 0x04000000 */ |
|
2395 | #define DMA_IFCR_CHTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer clear */ |
3941 | #define DMA_IFCR_CHTIF7 DMA_IFCR_CHTIF7_Msk /*!< Channel 7 Half Transfer clear */ |
- | 3942 | #define DMA_IFCR_CTEIF7_Pos (27U) |
|
- | 3943 | #define DMA_IFCR_CTEIF7_Msk (0x1U << DMA_IFCR_CTEIF7_Pos) /*!< 0x08000000 */ |
|
2396 | #define DMA_IFCR_CTEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error clear */ |
3944 | #define DMA_IFCR_CTEIF7 DMA_IFCR_CTEIF7_Msk /*!< Channel 7 Transfer Error clear */ |
2397 | 3945 | ||
2398 | /******************* Bit definition for DMA_CCR register *******************/ |
3946 | /******************* Bit definition for DMA_CCR register *******************/ |
- | 3947 | #define DMA_CCR_EN_Pos (0U) |
|
- | 3948 | #define DMA_CCR_EN_Msk (0x1U << DMA_CCR_EN_Pos) /*!< 0x00000001 */ |
|
2399 | #define DMA_CCR_EN ((uint32_t)0x00000001) /*!< Channel enable */ |
3949 | #define DMA_CCR_EN DMA_CCR_EN_Msk /*!< Channel enable */ |
- | 3950 | #define DMA_CCR_TCIE_Pos (1U) |
|
- | 3951 | #define DMA_CCR_TCIE_Msk (0x1U << DMA_CCR_TCIE_Pos) /*!< 0x00000002 */ |
|
2400 | #define DMA_CCR_TCIE ((uint32_t)0x00000002) /*!< Transfer complete interrupt enable */ |
3952 | #define DMA_CCR_TCIE DMA_CCR_TCIE_Msk /*!< Transfer complete interrupt enable */ |
- | 3953 | #define DMA_CCR_HTIE_Pos (2U) |
|
- | 3954 | #define DMA_CCR_HTIE_Msk (0x1U << DMA_CCR_HTIE_Pos) /*!< 0x00000004 */ |
|
2401 | #define DMA_CCR_HTIE ((uint32_t)0x00000004) /*!< Half Transfer interrupt enable */ |
3955 | #define DMA_CCR_HTIE DMA_CCR_HTIE_Msk /*!< Half Transfer interrupt enable */ |
- | 3956 | #define DMA_CCR_TEIE_Pos (3U) |
|
- | 3957 | #define DMA_CCR_TEIE_Msk (0x1U << DMA_CCR_TEIE_Pos) /*!< 0x00000008 */ |
|
2402 | #define DMA_CCR_TEIE ((uint32_t)0x00000008) /*!< Transfer error interrupt enable */ |
3958 | #define DMA_CCR_TEIE DMA_CCR_TEIE_Msk /*!< Transfer error interrupt enable */ |
- | 3959 | #define DMA_CCR_DIR_Pos (4U) |
|
- | 3960 | #define DMA_CCR_DIR_Msk (0x1U << DMA_CCR_DIR_Pos) /*!< 0x00000010 */ |
|
2403 | #define DMA_CCR_DIR ((uint32_t)0x00000010) /*!< Data transfer direction */ |
3961 | #define DMA_CCR_DIR DMA_CCR_DIR_Msk /*!< Data transfer direction */ |
- | 3962 | #define DMA_CCR_CIRC_Pos (5U) |
|
- | 3963 | #define DMA_CCR_CIRC_Msk (0x1U << DMA_CCR_CIRC_Pos) /*!< 0x00000020 */ |
|
2404 | #define DMA_CCR_CIRC ((uint32_t)0x00000020) /*!< Circular mode */ |
3964 | #define DMA_CCR_CIRC DMA_CCR_CIRC_Msk /*!< Circular mode */ |
- | 3965 | #define DMA_CCR_PINC_Pos (6U) |
|
- | 3966 | #define DMA_CCR_PINC_Msk (0x1U << DMA_CCR_PINC_Pos) /*!< 0x00000040 */ |
|
2405 | #define DMA_CCR_PINC ((uint32_t)0x00000040) /*!< Peripheral increment mode */ |
3967 | #define DMA_CCR_PINC DMA_CCR_PINC_Msk /*!< Peripheral increment mode */ |
- | 3968 | #define DMA_CCR_MINC_Pos (7U) |
|
- | 3969 | #define DMA_CCR_MINC_Msk (0x1U << DMA_CCR_MINC_Pos) /*!< 0x00000080 */ |
|
2406 | #define DMA_CCR_MINC ((uint32_t)0x00000080) /*!< Memory increment mode */ |
3970 | #define DMA_CCR_MINC DMA_CCR_MINC_Msk /*!< Memory increment mode */ |
2407 | 3971 | ||
- | 3972 | #define DMA_CCR_PSIZE_Pos (8U) |
|
- | 3973 | #define DMA_CCR_PSIZE_Msk (0x3U << DMA_CCR_PSIZE_Pos) /*!< 0x00000300 */ |
|
2408 | #define DMA_CCR_PSIZE ((uint32_t)0x00000300) /*!< PSIZE[1:0] bits (Peripheral size) */ |
3974 | #define DMA_CCR_PSIZE DMA_CCR_PSIZE_Msk /*!< PSIZE[1:0] bits (Peripheral size) */ |
2409 | #define DMA_CCR_PSIZE_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
3975 | #define DMA_CCR_PSIZE_0 (0x1U << DMA_CCR_PSIZE_Pos) /*!< 0x00000100 */ |
2410 | #define DMA_CCR_PSIZE_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
3976 | #define DMA_CCR_PSIZE_1 (0x2U << DMA_CCR_PSIZE_Pos) /*!< 0x00000200 */ |
2411 | 3977 | ||
- | 3978 | #define DMA_CCR_MSIZE_Pos (10U) |
|
- | 3979 | #define DMA_CCR_MSIZE_Msk (0x3U << DMA_CCR_MSIZE_Pos) /*!< 0x00000C00 */ |
|
2412 | #define DMA_CCR_MSIZE ((uint32_t)0x00000C00) /*!< MSIZE[1:0] bits (Memory size) */ |
3980 | #define DMA_CCR_MSIZE DMA_CCR_MSIZE_Msk /*!< MSIZE[1:0] bits (Memory size) */ |
2413 | #define DMA_CCR_MSIZE_0 ((uint32_t)0x00000400) /*!< Bit 0 */ |
3981 | #define DMA_CCR_MSIZE_0 (0x1U << DMA_CCR_MSIZE_Pos) /*!< 0x00000400 */ |
2414 | #define DMA_CCR_MSIZE_1 ((uint32_t)0x00000800) /*!< Bit 1 */ |
3982 | #define DMA_CCR_MSIZE_1 (0x2U << DMA_CCR_MSIZE_Pos) /*!< 0x00000800 */ |
2415 | 3983 | ||
- | 3984 | #define DMA_CCR_PL_Pos (12U) |
|
- | 3985 | #define DMA_CCR_PL_Msk (0x3U << DMA_CCR_PL_Pos) /*!< 0x00003000 */ |
|
2416 | #define DMA_CCR_PL ((uint32_t)0x00003000) /*!< PL[1:0] bits(Channel Priority level) */ |
3986 | #define DMA_CCR_PL DMA_CCR_PL_Msk /*!< PL[1:0] bits(Channel Priority level) */ |
2417 | #define DMA_CCR_PL_0 ((uint32_t)0x00001000) /*!< Bit 0 */ |
3987 | #define DMA_CCR_PL_0 (0x1U << DMA_CCR_PL_Pos) /*!< 0x00001000 */ |
2418 | #define DMA_CCR_PL_1 ((uint32_t)0x00002000) /*!< Bit 1 */ |
3988 | #define DMA_CCR_PL_1 (0x2U << DMA_CCR_PL_Pos) /*!< 0x00002000 */ |
2419 | 3989 | ||
- | 3990 | #define DMA_CCR_MEM2MEM_Pos (14U) |
|
- | 3991 | #define DMA_CCR_MEM2MEM_Msk (0x1U << DMA_CCR_MEM2MEM_Pos) /*!< 0x00004000 */ |
|
2420 | #define DMA_CCR_MEM2MEM ((uint32_t)0x00004000) /*!< Memory to memory mode */ |
3992 | #define DMA_CCR_MEM2MEM DMA_CCR_MEM2MEM_Msk /*!< Memory to memory mode */ |
2421 | 3993 | ||
2422 | /****************** Bit definition for DMA_CNDTR register ******************/ |
3994 | /****************** Bit definition for DMA_CNDTR register ******************/ |
- | 3995 | #define DMA_CNDTR_NDT_Pos (0U) |
|
- | 3996 | #define DMA_CNDTR_NDT_Msk (0xFFFFU << DMA_CNDTR_NDT_Pos) /*!< 0x0000FFFF */ |
|
2423 | #define DMA_CNDTR_NDT ((uint32_t)0x0000FFFF) /*!< Number of data to Transfer */ |
3997 | #define DMA_CNDTR_NDT DMA_CNDTR_NDT_Msk /*!< Number of data to Transfer */ |
2424 | 3998 | ||
2425 | /****************** Bit definition for DMA_CPAR register *******************/ |
3999 | /****************** Bit definition for DMA_CPAR register *******************/ |
- | 4000 | #define DMA_CPAR_PA_Pos (0U) |
|
- | 4001 | #define DMA_CPAR_PA_Msk (0xFFFFFFFFU << DMA_CPAR_PA_Pos) /*!< 0xFFFFFFFF */ |
|
2426 | #define DMA_CPAR_PA ((uint32_t)0xFFFFFFFF) /*!< Peripheral Address */ |
4002 | #define DMA_CPAR_PA DMA_CPAR_PA_Msk /*!< Peripheral Address */ |
2427 | 4003 | ||
2428 | /****************** Bit definition for DMA_CMAR register *******************/ |
4004 | /****************** Bit definition for DMA_CMAR register *******************/ |
- | 4005 | #define DMA_CMAR_MA_Pos (0U) |
|
- | 4006 | #define DMA_CMAR_MA_Msk (0xFFFFFFFFU << DMA_CMAR_MA_Pos) /*!< 0xFFFFFFFF */ |
|
2429 | #define DMA_CMAR_MA ((uint32_t)0xFFFFFFFF) /*!< Memory Address */ |
4007 | #define DMA_CMAR_MA DMA_CMAR_MA_Msk /*!< Memory Address */ |
2430 | 4008 | ||
2431 | /******************************************************************************/ |
4009 | /******************************************************************************/ |
2432 | /* */ |
4010 | /* */ |
2433 | /* Analog to Digital Converter */ |
4011 | /* Analog to Digital Converter (ADC) */ |
2434 | /* */ |
4012 | /* */ |
2435 | /******************************************************************************/ |
4013 | /******************************************************************************/ |
2436 | 4014 | ||
- | 4015 | /* |
|
- | 4016 | * @brief Specific device feature definitions (not present on all devices in the STM32F1 family) |
|
- | 4017 | */ |
|
- | 4018 | /* Note: No specific macro feature on this device */ |
|
- | 4019 | ||
2437 | /******************** Bit definition for ADC_SR register ********************/ |
4020 | /******************** Bit definition for ADC_SR register ********************/ |
- | 4021 | #define ADC_SR_AWD_Pos (0U) |
|
- | 4022 | #define ADC_SR_AWD_Msk (0x1U << ADC_SR_AWD_Pos) /*!< 0x00000001 */ |
|
2438 | #define ADC_SR_AWD ((uint32_t)0x00000001) /*!< Analog watchdog flag */ |
4023 | #define ADC_SR_AWD ADC_SR_AWD_Msk /*!< ADC analog watchdog 1 flag */ |
- | 4024 | #define ADC_SR_EOS_Pos (1U) |
|
2439 | #define ADC_SR_EOC ((uint32_t)0x00000002) /*!< End of conversion */ |
4025 | #define ADC_SR_EOS_Msk (0x1U << ADC_SR_EOS_Pos) /*!< 0x00000002 */ |
- | 4026 | #define ADC_SR_EOS ADC_SR_EOS_Msk /*!< ADC group regular end of sequence conversions flag */ |
|
- | 4027 | #define ADC_SR_JEOS_Pos (2U) |
|
- | 4028 | #define ADC_SR_JEOS_Msk (0x1U << ADC_SR_JEOS_Pos) /*!< 0x00000004 */ |
|
2440 | #define ADC_SR_JEOC ((uint32_t)0x00000004) /*!< Injected channel end of conversion */ |
4029 | #define ADC_SR_JEOS ADC_SR_JEOS_Msk /*!< ADC group injected end of sequence conversions flag */ |
- | 4030 | #define ADC_SR_JSTRT_Pos (3U) |
|
- | 4031 | #define ADC_SR_JSTRT_Msk (0x1U << ADC_SR_JSTRT_Pos) /*!< 0x00000008 */ |
|
2441 | #define ADC_SR_JSTRT ((uint32_t)0x00000008) /*!< Injected channel Start flag */ |
4032 | #define ADC_SR_JSTRT ADC_SR_JSTRT_Msk /*!< ADC group injected conversion start flag */ |
- | 4033 | #define ADC_SR_STRT_Pos (4U) |
|
- | 4034 | #define ADC_SR_STRT_Msk (0x1U << ADC_SR_STRT_Pos) /*!< 0x00000010 */ |
|
2442 | #define ADC_SR_STRT ((uint32_t)0x00000010) /*!< Regular channel Start flag */ |
4035 | #define ADC_SR_STRT ADC_SR_STRT_Msk /*!< ADC group regular conversion start flag */ |
- | 4036 | ||
- | 4037 | /* Legacy defines */ |
|
- | 4038 | #define ADC_SR_EOC (ADC_SR_EOS) |
|
- | 4039 | #define ADC_SR_JEOC (ADC_SR_JEOS) |
|
2443 | 4040 | ||
2444 | /******************* Bit definition for ADC_CR1 register ********************/ |
4041 | /******************* Bit definition for ADC_CR1 register ********************/ |
- | 4042 | #define ADC_CR1_AWDCH_Pos (0U) |
|
- | 4043 | #define ADC_CR1_AWDCH_Msk (0x1FU << ADC_CR1_AWDCH_Pos) /*!< 0x0000001F */ |
|
2445 | #define ADC_CR1_AWDCH ((uint32_t)0x0000001F) /*!< AWDCH[4:0] bits (Analog watchdog channel select bits) */ |
4044 | #define ADC_CR1_AWDCH ADC_CR1_AWDCH_Msk /*!< ADC analog watchdog 1 monitored channel selection */ |
2446 | #define ADC_CR1_AWDCH_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
4045 | #define ADC_CR1_AWDCH_0 (0x01U << ADC_CR1_AWDCH_Pos) /*!< 0x00000001 */ |
2447 | #define ADC_CR1_AWDCH_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
4046 | #define ADC_CR1_AWDCH_1 (0x02U << ADC_CR1_AWDCH_Pos) /*!< 0x00000002 */ |
2448 | #define ADC_CR1_AWDCH_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
4047 | #define ADC_CR1_AWDCH_2 (0x04U << ADC_CR1_AWDCH_Pos) /*!< 0x00000004 */ |
2449 | #define ADC_CR1_AWDCH_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
4048 | #define ADC_CR1_AWDCH_3 (0x08U << ADC_CR1_AWDCH_Pos) /*!< 0x00000008 */ |
2450 | #define ADC_CR1_AWDCH_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
4049 | #define ADC_CR1_AWDCH_4 (0x10U << ADC_CR1_AWDCH_Pos) /*!< 0x00000010 */ |
2451 | 4050 | ||
- | 4051 | #define ADC_CR1_EOSIE_Pos (5U) |
|
2452 | #define ADC_CR1_EOCIE ((uint32_t)0x00000020) /*!< Interrupt enable for EOC */ |
4052 | #define ADC_CR1_EOSIE_Msk (0x1U << ADC_CR1_EOSIE_Pos) /*!< 0x00000020 */ |
- | 4053 | #define ADC_CR1_EOSIE ADC_CR1_EOSIE_Msk /*!< ADC group regular end of sequence conversions interrupt */ |
|
- | 4054 | #define ADC_CR1_AWDIE_Pos (6U) |
|
- | 4055 | #define ADC_CR1_AWDIE_Msk (0x1U << ADC_CR1_AWDIE_Pos) /*!< 0x00000040 */ |
|
2453 | #define ADC_CR1_AWDIE ((uint32_t)0x00000040) /*!< Analog Watchdog interrupt enable */ |
4056 | #define ADC_CR1_AWDIE ADC_CR1_AWDIE_Msk /*!< ADC analog watchdog 1 interrupt */ |
- | 4057 | #define ADC_CR1_JEOSIE_Pos (7U) |
|
- | 4058 | #define ADC_CR1_JEOSIE_Msk (0x1U << ADC_CR1_JEOSIE_Pos) /*!< 0x00000080 */ |
|
2454 | #define ADC_CR1_JEOCIE ((uint32_t)0x00000080) /*!< Interrupt enable for injected channels */ |
4059 | #define ADC_CR1_JEOSIE ADC_CR1_JEOSIE_Msk /*!< ADC group injected end of sequence conversions interrupt */ |
- | 4060 | #define ADC_CR1_SCAN_Pos (8U) |
|
- | 4061 | #define ADC_CR1_SCAN_Msk (0x1U << ADC_CR1_SCAN_Pos) /*!< 0x00000100 */ |
|
2455 | #define ADC_CR1_SCAN ((uint32_t)0x00000100) /*!< Scan mode */ |
4062 | #define ADC_CR1_SCAN ADC_CR1_SCAN_Msk /*!< ADC scan mode */ |
- | 4063 | #define ADC_CR1_AWDSGL_Pos (9U) |
|
- | 4064 | #define ADC_CR1_AWDSGL_Msk (0x1U << ADC_CR1_AWDSGL_Pos) /*!< 0x00000200 */ |
|
2456 | #define ADC_CR1_AWDSGL ((uint32_t)0x00000200) /*!< Enable the watchdog on a single channel in scan mode */ |
4065 | #define ADC_CR1_AWDSGL ADC_CR1_AWDSGL_Msk /*!< ADC analog watchdog 1 monitoring a single channel or all channels */ |
- | 4066 | #define ADC_CR1_JAUTO_Pos (10U) |
|
- | 4067 | #define ADC_CR1_JAUTO_Msk (0x1U << ADC_CR1_JAUTO_Pos) /*!< 0x00000400 */ |
|
2457 | #define ADC_CR1_JAUTO ((uint32_t)0x00000400) /*!< Automatic injected group conversion */ |
4068 | #define ADC_CR1_JAUTO ADC_CR1_JAUTO_Msk /*!< ADC group injected automatic trigger mode */ |
- | 4069 | #define ADC_CR1_DISCEN_Pos (11U) |
|
- | 4070 | #define ADC_CR1_DISCEN_Msk (0x1U << ADC_CR1_DISCEN_Pos) /*!< 0x00000800 */ |
|
2458 | #define ADC_CR1_DISCEN ((uint32_t)0x00000800) /*!< Discontinuous mode on regular channels */ |
4071 | #define ADC_CR1_DISCEN ADC_CR1_DISCEN_Msk /*!< ADC group regular sequencer discontinuous mode */ |
- | 4072 | #define ADC_CR1_JDISCEN_Pos (12U) |
|
- | 4073 | #define ADC_CR1_JDISCEN_Msk (0x1U << ADC_CR1_JDISCEN_Pos) /*!< 0x00001000 */ |
|
2459 | #define ADC_CR1_JDISCEN ((uint32_t)0x00001000) /*!< Discontinuous mode on injected channels */ |
4074 | #define ADC_CR1_JDISCEN ADC_CR1_JDISCEN_Msk /*!< ADC group injected sequencer discontinuous mode */ |
2460 | 4075 | ||
- | 4076 | #define ADC_CR1_DISCNUM_Pos (13U) |
|
- | 4077 | #define ADC_CR1_DISCNUM_Msk (0x7U << ADC_CR1_DISCNUM_Pos) /*!< 0x0000E000 */ |
|
2461 | #define ADC_CR1_DISCNUM ((uint32_t)0x0000E000) /*!< DISCNUM[2:0] bits (Discontinuous mode channel count) */ |
4078 | #define ADC_CR1_DISCNUM ADC_CR1_DISCNUM_Msk /*!< ADC group regular sequencer discontinuous number of ranks */ |
2462 | #define ADC_CR1_DISCNUM_0 ((uint32_t)0x00002000) /*!< Bit 0 */ |
4079 | #define ADC_CR1_DISCNUM_0 (0x1U << ADC_CR1_DISCNUM_Pos) /*!< 0x00002000 */ |
2463 | #define ADC_CR1_DISCNUM_1 ((uint32_t)0x00004000) /*!< Bit 1 */ |
4080 | #define ADC_CR1_DISCNUM_1 (0x2U << ADC_CR1_DISCNUM_Pos) /*!< 0x00004000 */ |
2464 | #define ADC_CR1_DISCNUM_2 ((uint32_t)0x00008000) /*!< Bit 2 */ |
4081 | #define ADC_CR1_DISCNUM_2 (0x4U << ADC_CR1_DISCNUM_Pos) /*!< 0x00008000 */ |
2465 | 4082 | ||
- | 4083 | #define ADC_CR1_JAWDEN_Pos (22U) |
|
- | 4084 | #define ADC_CR1_JAWDEN_Msk (0x1U << ADC_CR1_JAWDEN_Pos) /*!< 0x00400000 */ |
|
2466 | #define ADC_CR1_JAWDEN ((uint32_t)0x00400000) /*!< Analog watchdog enable on injected channels */ |
4085 | #define ADC_CR1_JAWDEN ADC_CR1_JAWDEN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group injected */ |
- | 4086 | #define ADC_CR1_AWDEN_Pos (23U) |
|
- | 4087 | #define ADC_CR1_AWDEN_Msk (0x1U << ADC_CR1_AWDEN_Pos) /*!< 0x00800000 */ |
|
2467 | #define ADC_CR1_AWDEN ((uint32_t)0x00800000) /*!< Analog watchdog enable on regular channels */ |
4088 | #define ADC_CR1_AWDEN ADC_CR1_AWDEN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group regular */ |
- | 4089 | ||
- | 4090 | /* Legacy defines */ |
|
- | 4091 | #define ADC_CR1_EOCIE (ADC_CR1_EOSIE) |
|
- | 4092 | #define ADC_CR1_JEOCIE (ADC_CR1_JEOSIE) |
|
2468 | 4093 | ||
2469 | - | ||
2470 | /******************* Bit definition for ADC_CR2 register ********************/ |
4094 | /******************* Bit definition for ADC_CR2 register ********************/ |
- | 4095 | #define ADC_CR2_ADON_Pos (0U) |
|
- | 4096 | #define ADC_CR2_ADON_Msk (0x1U << ADC_CR2_ADON_Pos) /*!< 0x00000001 */ |
|
2471 | #define ADC_CR2_ADON ((uint32_t)0x00000001) /*!< A/D Converter ON / OFF */ |
4097 | #define ADC_CR2_ADON ADC_CR2_ADON_Msk /*!< ADC enable */ |
- | 4098 | #define ADC_CR2_CONT_Pos (1U) |
|
- | 4099 | #define ADC_CR2_CONT_Msk (0x1U << ADC_CR2_CONT_Pos) /*!< 0x00000002 */ |
|
2472 | #define ADC_CR2_CONT ((uint32_t)0x00000002) /*!< Continuous Conversion */ |
4100 | #define ADC_CR2_CONT ADC_CR2_CONT_Msk /*!< ADC group regular continuous conversion mode */ |
- | 4101 | #define ADC_CR2_CAL_Pos (2U) |
|
- | 4102 | #define ADC_CR2_CAL_Msk (0x1U << ADC_CR2_CAL_Pos) /*!< 0x00000004 */ |
|
2473 | #define ADC_CR2_CAL ((uint32_t)0x00000004) /*!< A/D Calibration */ |
4103 | #define ADC_CR2_CAL ADC_CR2_CAL_Msk /*!< ADC calibration start */ |
- | 4104 | #define ADC_CR2_RSTCAL_Pos (3U) |
|
- | 4105 | #define ADC_CR2_RSTCAL_Msk (0x1U << ADC_CR2_RSTCAL_Pos) /*!< 0x00000008 */ |
|
2474 | #define ADC_CR2_RSTCAL ((uint32_t)0x00000008) /*!< Reset Calibration */ |
4106 | #define ADC_CR2_RSTCAL ADC_CR2_RSTCAL_Msk /*!< ADC calibration reset */ |
- | 4107 | #define ADC_CR2_DMA_Pos (8U) |
|
- | 4108 | #define ADC_CR2_DMA_Msk (0x1U << ADC_CR2_DMA_Pos) /*!< 0x00000100 */ |
|
2475 | #define ADC_CR2_DMA ((uint32_t)0x00000100) /*!< Direct Memory access mode */ |
4109 | #define ADC_CR2_DMA ADC_CR2_DMA_Msk /*!< ADC DMA transfer enable */ |
- | 4110 | #define ADC_CR2_ALIGN_Pos (11U) |
|
- | 4111 | #define ADC_CR2_ALIGN_Msk (0x1U << ADC_CR2_ALIGN_Pos) /*!< 0x00000800 */ |
|
2476 | #define ADC_CR2_ALIGN ((uint32_t)0x00000800) /*!< Data Alignment */ |
4112 | #define ADC_CR2_ALIGN ADC_CR2_ALIGN_Msk /*!< ADC data alignement */ |
2477 | 4113 | ||
- | 4114 | #define ADC_CR2_JEXTSEL_Pos (12U) |
|
- | 4115 | #define ADC_CR2_JEXTSEL_Msk (0x7U << ADC_CR2_JEXTSEL_Pos) /*!< 0x00007000 */ |
|
2478 | #define ADC_CR2_JEXTSEL ((uint32_t)0x00007000) /*!< JEXTSEL[2:0] bits (External event select for injected group) */ |
4116 | #define ADC_CR2_JEXTSEL ADC_CR2_JEXTSEL_Msk /*!< ADC group injected external trigger source */ |
2479 | #define ADC_CR2_JEXTSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */ |
4117 | #define ADC_CR2_JEXTSEL_0 (0x1U << ADC_CR2_JEXTSEL_Pos) /*!< 0x00001000 */ |
2480 | #define ADC_CR2_JEXTSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */ |
4118 | #define ADC_CR2_JEXTSEL_1 (0x2U << ADC_CR2_JEXTSEL_Pos) /*!< 0x00002000 */ |
2481 | #define ADC_CR2_JEXTSEL_2 ((uint32_t)0x00004000) /*!< Bit 2 */ |
4119 | #define ADC_CR2_JEXTSEL_2 (0x4U << ADC_CR2_JEXTSEL_Pos) /*!< 0x00004000 */ |
2482 | 4120 | ||
- | 4121 | #define ADC_CR2_JEXTTRIG_Pos (15U) |
|
- | 4122 | #define ADC_CR2_JEXTTRIG_Msk (0x1U << ADC_CR2_JEXTTRIG_Pos) /*!< 0x00008000 */ |
|
2483 | #define ADC_CR2_JEXTTRIG ((uint32_t)0x00008000) /*!< External Trigger Conversion mode for injected channels */ |
4123 | #define ADC_CR2_JEXTTRIG ADC_CR2_JEXTTRIG_Msk /*!< ADC group injected external trigger enable */ |
2484 | 4124 | ||
- | 4125 | #define ADC_CR2_EXTSEL_Pos (17U) |
|
- | 4126 | #define ADC_CR2_EXTSEL_Msk (0x7U << ADC_CR2_EXTSEL_Pos) /*!< 0x000E0000 */ |
|
2485 | #define ADC_CR2_EXTSEL ((uint32_t)0x000E0000) /*!< EXTSEL[2:0] bits (External Event Select for regular group) */ |
4127 | #define ADC_CR2_EXTSEL ADC_CR2_EXTSEL_Msk /*!< ADC group regular external trigger source */ |
2486 | #define ADC_CR2_EXTSEL_0 ((uint32_t)0x00020000) /*!< Bit 0 */ |
4128 | #define ADC_CR2_EXTSEL_0 (0x1U << ADC_CR2_EXTSEL_Pos) /*!< 0x00020000 */ |
2487 | #define ADC_CR2_EXTSEL_1 ((uint32_t)0x00040000) /*!< Bit 1 */ |
4129 | #define ADC_CR2_EXTSEL_1 (0x2U << ADC_CR2_EXTSEL_Pos) /*!< 0x00040000 */ |
2488 | #define ADC_CR2_EXTSEL_2 ((uint32_t)0x00080000) /*!< Bit 2 */ |
4130 | #define ADC_CR2_EXTSEL_2 (0x4U << ADC_CR2_EXTSEL_Pos) /*!< 0x00080000 */ |
2489 | 4131 | ||
- | 4132 | #define ADC_CR2_EXTTRIG_Pos (20U) |
|
- | 4133 | #define ADC_CR2_EXTTRIG_Msk (0x1U << ADC_CR2_EXTTRIG_Pos) /*!< 0x00100000 */ |
|
2490 | #define ADC_CR2_EXTTRIG ((uint32_t)0x00100000) /*!< External Trigger Conversion mode for regular channels */ |
4134 | #define ADC_CR2_EXTTRIG ADC_CR2_EXTTRIG_Msk /*!< ADC group regular external trigger enable */ |
- | 4135 | #define ADC_CR2_JSWSTART_Pos (21U) |
|
- | 4136 | #define ADC_CR2_JSWSTART_Msk (0x1U << ADC_CR2_JSWSTART_Pos) /*!< 0x00200000 */ |
|
2491 | #define ADC_CR2_JSWSTART ((uint32_t)0x00200000) /*!< Start Conversion of injected channels */ |
4137 | #define ADC_CR2_JSWSTART ADC_CR2_JSWSTART_Msk /*!< ADC group injected conversion start */ |
- | 4138 | #define ADC_CR2_SWSTART_Pos (22U) |
|
- | 4139 | #define ADC_CR2_SWSTART_Msk (0x1U << ADC_CR2_SWSTART_Pos) /*!< 0x00400000 */ |
|
2492 | #define ADC_CR2_SWSTART ((uint32_t)0x00400000) /*!< Start Conversion of regular channels */ |
4140 | #define ADC_CR2_SWSTART ADC_CR2_SWSTART_Msk /*!< ADC group regular conversion start */ |
- | 4141 | #define ADC_CR2_TSVREFE_Pos (23U) |
|
- | 4142 | #define ADC_CR2_TSVREFE_Msk (0x1U << ADC_CR2_TSVREFE_Pos) /*!< 0x00800000 */ |
|
2493 | #define ADC_CR2_TSVREFE ((uint32_t)0x00800000) /*!< Temperature Sensor and VREFINT Enable */ |
4143 | #define ADC_CR2_TSVREFE ADC_CR2_TSVREFE_Msk /*!< ADC internal path to VrefInt and temperature sensor enable */ |
2494 | 4144 | ||
2495 | /****************** Bit definition for ADC_SMPR1 register *******************/ |
4145 | /****************** Bit definition for ADC_SMPR1 register *******************/ |
- | 4146 | #define ADC_SMPR1_SMP10_Pos (0U) |
|
- | 4147 | #define ADC_SMPR1_SMP10_Msk (0x7U << ADC_SMPR1_SMP10_Pos) /*!< 0x00000007 */ |
|
2496 | #define ADC_SMPR1_SMP10 ((uint32_t)0x00000007) /*!< SMP10[2:0] bits (Channel 10 Sample time selection) */ |
4148 | #define ADC_SMPR1_SMP10 ADC_SMPR1_SMP10_Msk /*!< ADC channel 10 sampling time selection */ |
2497 | #define ADC_SMPR1_SMP10_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
4149 | #define ADC_SMPR1_SMP10_0 (0x1U << ADC_SMPR1_SMP10_Pos) /*!< 0x00000001 */ |
2498 | #define ADC_SMPR1_SMP10_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
4150 | #define ADC_SMPR1_SMP10_1 (0x2U << ADC_SMPR1_SMP10_Pos) /*!< 0x00000002 */ |
2499 | #define ADC_SMPR1_SMP10_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
4151 | #define ADC_SMPR1_SMP10_2 (0x4U << ADC_SMPR1_SMP10_Pos) /*!< 0x00000004 */ |
2500 | 4152 | ||
- | 4153 | #define ADC_SMPR1_SMP11_Pos (3U) |
|
- | 4154 | #define ADC_SMPR1_SMP11_Msk (0x7U << ADC_SMPR1_SMP11_Pos) /*!< 0x00000038 */ |
|
2501 | #define ADC_SMPR1_SMP11 ((uint32_t)0x00000038) /*!< SMP11[2:0] bits (Channel 11 Sample time selection) */ |
4155 | #define ADC_SMPR1_SMP11 ADC_SMPR1_SMP11_Msk /*!< ADC channel 11 sampling time selection */ |
2502 | #define ADC_SMPR1_SMP11_0 ((uint32_t)0x00000008) /*!< Bit 0 */ |
4156 | #define ADC_SMPR1_SMP11_0 (0x1U << ADC_SMPR1_SMP11_Pos) /*!< 0x00000008 */ |
2503 | #define ADC_SMPR1_SMP11_1 ((uint32_t)0x00000010) /*!< Bit 1 */ |
4157 | #define ADC_SMPR1_SMP11_1 (0x2U << ADC_SMPR1_SMP11_Pos) /*!< 0x00000010 */ |
2504 | #define ADC_SMPR1_SMP11_2 ((uint32_t)0x00000020) /*!< Bit 2 */ |
4158 | #define ADC_SMPR1_SMP11_2 (0x4U << ADC_SMPR1_SMP11_Pos) /*!< 0x00000020 */ |
2505 | 4159 | ||
- | 4160 | #define ADC_SMPR1_SMP12_Pos (6U) |
|
- | 4161 | #define ADC_SMPR1_SMP12_Msk (0x7U << ADC_SMPR1_SMP12_Pos) /*!< 0x000001C0 */ |
|
2506 | #define ADC_SMPR1_SMP12 ((uint32_t)0x000001C0) /*!< SMP12[2:0] bits (Channel 12 Sample time selection) */ |
4162 | #define ADC_SMPR1_SMP12 ADC_SMPR1_SMP12_Msk /*!< ADC channel 12 sampling time selection */ |
2507 | #define ADC_SMPR1_SMP12_0 ((uint32_t)0x00000040) /*!< Bit 0 */ |
4163 | #define ADC_SMPR1_SMP12_0 (0x1U << ADC_SMPR1_SMP12_Pos) /*!< 0x00000040 */ |
2508 | #define ADC_SMPR1_SMP12_1 ((uint32_t)0x00000080) /*!< Bit 1 */ |
4164 | #define ADC_SMPR1_SMP12_1 (0x2U << ADC_SMPR1_SMP12_Pos) /*!< 0x00000080 */ |
2509 | #define ADC_SMPR1_SMP12_2 ((uint32_t)0x00000100) /*!< Bit 2 */ |
4165 | #define ADC_SMPR1_SMP12_2 (0x4U << ADC_SMPR1_SMP12_Pos) /*!< 0x00000100 */ |
2510 | 4166 | ||
- | 4167 | #define ADC_SMPR1_SMP13_Pos (9U) |
|
- | 4168 | #define ADC_SMPR1_SMP13_Msk (0x7U << ADC_SMPR1_SMP13_Pos) /*!< 0x00000E00 */ |
|
2511 | #define ADC_SMPR1_SMP13 ((uint32_t)0x00000E00) /*!< SMP13[2:0] bits (Channel 13 Sample time selection) */ |
4169 | #define ADC_SMPR1_SMP13 ADC_SMPR1_SMP13_Msk /*!< ADC channel 13 sampling time selection */ |
2512 | #define ADC_SMPR1_SMP13_0 ((uint32_t)0x00000200) /*!< Bit 0 */ |
4170 | #define ADC_SMPR1_SMP13_0 (0x1U << ADC_SMPR1_SMP13_Pos) /*!< 0x00000200 */ |
2513 | #define ADC_SMPR1_SMP13_1 ((uint32_t)0x00000400) /*!< Bit 1 */ |
4171 | #define ADC_SMPR1_SMP13_1 (0x2U << ADC_SMPR1_SMP13_Pos) /*!< 0x00000400 */ |
2514 | #define ADC_SMPR1_SMP13_2 ((uint32_t)0x00000800) /*!< Bit 2 */ |
4172 | #define ADC_SMPR1_SMP13_2 (0x4U << ADC_SMPR1_SMP13_Pos) /*!< 0x00000800 */ |
2515 | 4173 | ||
- | 4174 | #define ADC_SMPR1_SMP14_Pos (12U) |
|
- | 4175 | #define ADC_SMPR1_SMP14_Msk (0x7U << ADC_SMPR1_SMP14_Pos) /*!< 0x00007000 */ |
|
2516 | #define ADC_SMPR1_SMP14 ((uint32_t)0x00007000) /*!< SMP14[2:0] bits (Channel 14 Sample time selection) */ |
4176 | #define ADC_SMPR1_SMP14 ADC_SMPR1_SMP14_Msk /*!< ADC channel 14 sampling time selection */ |
2517 | #define ADC_SMPR1_SMP14_0 ((uint32_t)0x00001000) /*!< Bit 0 */ |
4177 | #define ADC_SMPR1_SMP14_0 (0x1U << ADC_SMPR1_SMP14_Pos) /*!< 0x00001000 */ |
2518 | #define ADC_SMPR1_SMP14_1 ((uint32_t)0x00002000) /*!< Bit 1 */ |
4178 | #define ADC_SMPR1_SMP14_1 (0x2U << ADC_SMPR1_SMP14_Pos) /*!< 0x00002000 */ |
2519 | #define ADC_SMPR1_SMP14_2 ((uint32_t)0x00004000) /*!< Bit 2 */ |
4179 | #define ADC_SMPR1_SMP14_2 (0x4U << ADC_SMPR1_SMP14_Pos) /*!< 0x00004000 */ |
2520 | 4180 | ||
- | 4181 | #define ADC_SMPR1_SMP15_Pos (15U) |
|
- | 4182 | #define ADC_SMPR1_SMP15_Msk (0x7U << ADC_SMPR1_SMP15_Pos) /*!< 0x00038000 */ |
|
2521 | #define ADC_SMPR1_SMP15 ((uint32_t)0x00038000) /*!< SMP15[2:0] bits (Channel 15 Sample time selection) */ |
4183 | #define ADC_SMPR1_SMP15 ADC_SMPR1_SMP15_Msk /*!< ADC channel 15 sampling time selection */ |
2522 | #define ADC_SMPR1_SMP15_0 ((uint32_t)0x00008000) /*!< Bit 0 */ |
4184 | #define ADC_SMPR1_SMP15_0 (0x1U << ADC_SMPR1_SMP15_Pos) /*!< 0x00008000 */ |
2523 | #define ADC_SMPR1_SMP15_1 ((uint32_t)0x00010000) /*!< Bit 1 */ |
4185 | #define ADC_SMPR1_SMP15_1 (0x2U << ADC_SMPR1_SMP15_Pos) /*!< 0x00010000 */ |
2524 | #define ADC_SMPR1_SMP15_2 ((uint32_t)0x00020000) /*!< Bit 2 */ |
4186 | #define ADC_SMPR1_SMP15_2 (0x4U << ADC_SMPR1_SMP15_Pos) /*!< 0x00020000 */ |
2525 | 4187 | ||
- | 4188 | #define ADC_SMPR1_SMP16_Pos (18U) |
|
- | 4189 | #define ADC_SMPR1_SMP16_Msk (0x7U << ADC_SMPR1_SMP16_Pos) /*!< 0x001C0000 */ |
|
2526 | #define ADC_SMPR1_SMP16 ((uint32_t)0x001C0000) /*!< SMP16[2:0] bits (Channel 16 Sample time selection) */ |
4190 | #define ADC_SMPR1_SMP16 ADC_SMPR1_SMP16_Msk /*!< ADC channel 16 sampling time selection */ |
2527 | #define ADC_SMPR1_SMP16_0 ((uint32_t)0x00040000) /*!< Bit 0 */ |
4191 | #define ADC_SMPR1_SMP16_0 (0x1U << ADC_SMPR1_SMP16_Pos) /*!< 0x00040000 */ |
2528 | #define ADC_SMPR1_SMP16_1 ((uint32_t)0x00080000) /*!< Bit 1 */ |
4192 | #define ADC_SMPR1_SMP16_1 (0x2U << ADC_SMPR1_SMP16_Pos) /*!< 0x00080000 */ |
2529 | #define ADC_SMPR1_SMP16_2 ((uint32_t)0x00100000) /*!< Bit 2 */ |
4193 | #define ADC_SMPR1_SMP16_2 (0x4U << ADC_SMPR1_SMP16_Pos) /*!< 0x00100000 */ |
2530 | 4194 | ||
- | 4195 | #define ADC_SMPR1_SMP17_Pos (21U) |
|
- | 4196 | #define ADC_SMPR1_SMP17_Msk (0x7U << ADC_SMPR1_SMP17_Pos) /*!< 0x00E00000 */ |
|
2531 | #define ADC_SMPR1_SMP17 ((uint32_t)0x00E00000) /*!< SMP17[2:0] bits (Channel 17 Sample time selection) */ |
4197 | #define ADC_SMPR1_SMP17 ADC_SMPR1_SMP17_Msk /*!< ADC channel 17 sampling time selection */ |
2532 | #define ADC_SMPR1_SMP17_0 ((uint32_t)0x00200000) /*!< Bit 0 */ |
4198 | #define ADC_SMPR1_SMP17_0 (0x1U << ADC_SMPR1_SMP17_Pos) /*!< 0x00200000 */ |
2533 | #define ADC_SMPR1_SMP17_1 ((uint32_t)0x00400000) /*!< Bit 1 */ |
4199 | #define ADC_SMPR1_SMP17_1 (0x2U << ADC_SMPR1_SMP17_Pos) /*!< 0x00400000 */ |
2534 | #define ADC_SMPR1_SMP17_2 ((uint32_t)0x00800000) /*!< Bit 2 */ |
4200 | #define ADC_SMPR1_SMP17_2 (0x4U << ADC_SMPR1_SMP17_Pos) /*!< 0x00800000 */ |
2535 | 4201 | ||
2536 | /****************** Bit definition for ADC_SMPR2 register *******************/ |
4202 | /****************** Bit definition for ADC_SMPR2 register *******************/ |
- | 4203 | #define ADC_SMPR2_SMP0_Pos (0U) |
|
- | 4204 | #define ADC_SMPR2_SMP0_Msk (0x7U << ADC_SMPR2_SMP0_Pos) /*!< 0x00000007 */ |
|
2537 | #define ADC_SMPR2_SMP0 ((uint32_t)0x00000007) /*!< SMP0[2:0] bits (Channel 0 Sample time selection) */ |
4205 | #define ADC_SMPR2_SMP0 ADC_SMPR2_SMP0_Msk /*!< ADC channel 0 sampling time selection */ |
2538 | #define ADC_SMPR2_SMP0_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
4206 | #define ADC_SMPR2_SMP0_0 (0x1U << ADC_SMPR2_SMP0_Pos) /*!< 0x00000001 */ |
2539 | #define ADC_SMPR2_SMP0_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
4207 | #define ADC_SMPR2_SMP0_1 (0x2U << ADC_SMPR2_SMP0_Pos) /*!< 0x00000002 */ |
2540 | #define ADC_SMPR2_SMP0_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
4208 | #define ADC_SMPR2_SMP0_2 (0x4U << ADC_SMPR2_SMP0_Pos) /*!< 0x00000004 */ |
2541 | 4209 | ||
- | 4210 | #define ADC_SMPR2_SMP1_Pos (3U) |
|
- | 4211 | #define ADC_SMPR2_SMP1_Msk (0x7U << ADC_SMPR2_SMP1_Pos) /*!< 0x00000038 */ |
|
2542 | #define ADC_SMPR2_SMP1 ((uint32_t)0x00000038) /*!< SMP1[2:0] bits (Channel 1 Sample time selection) */ |
4212 | #define ADC_SMPR2_SMP1 ADC_SMPR2_SMP1_Msk /*!< ADC channel 1 sampling time selection */ |
2543 | #define ADC_SMPR2_SMP1_0 ((uint32_t)0x00000008) /*!< Bit 0 */ |
4213 | #define ADC_SMPR2_SMP1_0 (0x1U << ADC_SMPR2_SMP1_Pos) /*!< 0x00000008 */ |
2544 | #define ADC_SMPR2_SMP1_1 ((uint32_t)0x00000010) /*!< Bit 1 */ |
4214 | #define ADC_SMPR2_SMP1_1 (0x2U << ADC_SMPR2_SMP1_Pos) /*!< 0x00000010 */ |
2545 | #define ADC_SMPR2_SMP1_2 ((uint32_t)0x00000020) /*!< Bit 2 */ |
4215 | #define ADC_SMPR2_SMP1_2 (0x4U << ADC_SMPR2_SMP1_Pos) /*!< 0x00000020 */ |
2546 | 4216 | ||
- | 4217 | #define ADC_SMPR2_SMP2_Pos (6U) |
|
- | 4218 | #define ADC_SMPR2_SMP2_Msk (0x7U << ADC_SMPR2_SMP2_Pos) /*!< 0x000001C0 */ |
|
2547 | #define ADC_SMPR2_SMP2 ((uint32_t)0x000001C0) /*!< SMP2[2:0] bits (Channel 2 Sample time selection) */ |
4219 | #define ADC_SMPR2_SMP2 ADC_SMPR2_SMP2_Msk /*!< ADC channel 2 sampling time selection */ |
2548 | #define ADC_SMPR2_SMP2_0 ((uint32_t)0x00000040) /*!< Bit 0 */ |
4220 | #define ADC_SMPR2_SMP2_0 (0x1U << ADC_SMPR2_SMP2_Pos) /*!< 0x00000040 */ |
2549 | #define ADC_SMPR2_SMP2_1 ((uint32_t)0x00000080) /*!< Bit 1 */ |
4221 | #define ADC_SMPR2_SMP2_1 (0x2U << ADC_SMPR2_SMP2_Pos) /*!< 0x00000080 */ |
2550 | #define ADC_SMPR2_SMP2_2 ((uint32_t)0x00000100) /*!< Bit 2 */ |
4222 | #define ADC_SMPR2_SMP2_2 (0x4U << ADC_SMPR2_SMP2_Pos) /*!< 0x00000100 */ |
2551 | 4223 | ||
- | 4224 | #define ADC_SMPR2_SMP3_Pos (9U) |
|
- | 4225 | #define ADC_SMPR2_SMP3_Msk (0x7U << ADC_SMPR2_SMP3_Pos) /*!< 0x00000E00 */ |
|
2552 | #define ADC_SMPR2_SMP3 ((uint32_t)0x00000E00) /*!< SMP3[2:0] bits (Channel 3 Sample time selection) */ |
4226 | #define ADC_SMPR2_SMP3 ADC_SMPR2_SMP3_Msk /*!< ADC channel 3 sampling time selection */ |
2553 | #define ADC_SMPR2_SMP3_0 ((uint32_t)0x00000200) /*!< Bit 0 */ |
4227 | #define ADC_SMPR2_SMP3_0 (0x1U << ADC_SMPR2_SMP3_Pos) /*!< 0x00000200 */ |
2554 | #define ADC_SMPR2_SMP3_1 ((uint32_t)0x00000400) /*!< Bit 1 */ |
4228 | #define ADC_SMPR2_SMP3_1 (0x2U << ADC_SMPR2_SMP3_Pos) /*!< 0x00000400 */ |
2555 | #define ADC_SMPR2_SMP3_2 ((uint32_t)0x00000800) /*!< Bit 2 */ |
4229 | #define ADC_SMPR2_SMP3_2 (0x4U << ADC_SMPR2_SMP3_Pos) /*!< 0x00000800 */ |
2556 | 4230 | ||
- | 4231 | #define ADC_SMPR2_SMP4_Pos (12U) |
|
- | 4232 | #define ADC_SMPR2_SMP4_Msk (0x7U << ADC_SMPR2_SMP4_Pos) /*!< 0x00007000 */ |
|
2557 | #define ADC_SMPR2_SMP4 ((uint32_t)0x00007000) /*!< SMP4[2:0] bits (Channel 4 Sample time selection) */ |
4233 | #define ADC_SMPR2_SMP4 ADC_SMPR2_SMP4_Msk /*!< ADC channel 4 sampling time selection */ |
2558 | #define ADC_SMPR2_SMP4_0 ((uint32_t)0x00001000) /*!< Bit 0 */ |
4234 | #define ADC_SMPR2_SMP4_0 (0x1U << ADC_SMPR2_SMP4_Pos) /*!< 0x00001000 */ |
2559 | #define ADC_SMPR2_SMP4_1 ((uint32_t)0x00002000) /*!< Bit 1 */ |
4235 | #define ADC_SMPR2_SMP4_1 (0x2U << ADC_SMPR2_SMP4_Pos) /*!< 0x00002000 */ |
2560 | #define ADC_SMPR2_SMP4_2 ((uint32_t)0x00004000) /*!< Bit 2 */ |
4236 | #define ADC_SMPR2_SMP4_2 (0x4U << ADC_SMPR2_SMP4_Pos) /*!< 0x00004000 */ |
2561 | 4237 | ||
- | 4238 | #define ADC_SMPR2_SMP5_Pos (15U) |
|
- | 4239 | #define ADC_SMPR2_SMP5_Msk (0x7U << ADC_SMPR2_SMP5_Pos) /*!< 0x00038000 */ |
|
2562 | #define ADC_SMPR2_SMP5 ((uint32_t)0x00038000) /*!< SMP5[2:0] bits (Channel 5 Sample time selection) */ |
4240 | #define ADC_SMPR2_SMP5 ADC_SMPR2_SMP5_Msk /*!< ADC channel 5 sampling time selection */ |
2563 | #define ADC_SMPR2_SMP5_0 ((uint32_t)0x00008000) /*!< Bit 0 */ |
4241 | #define ADC_SMPR2_SMP5_0 (0x1U << ADC_SMPR2_SMP5_Pos) /*!< 0x00008000 */ |
2564 | #define ADC_SMPR2_SMP5_1 ((uint32_t)0x00010000) /*!< Bit 1 */ |
4242 | #define ADC_SMPR2_SMP5_1 (0x2U << ADC_SMPR2_SMP5_Pos) /*!< 0x00010000 */ |
2565 | #define ADC_SMPR2_SMP5_2 ((uint32_t)0x00020000) /*!< Bit 2 */ |
4243 | #define ADC_SMPR2_SMP5_2 (0x4U << ADC_SMPR2_SMP5_Pos) /*!< 0x00020000 */ |
2566 | 4244 | ||
- | 4245 | #define ADC_SMPR2_SMP6_Pos (18U) |
|
- | 4246 | #define ADC_SMPR2_SMP6_Msk (0x7U << ADC_SMPR2_SMP6_Pos) /*!< 0x001C0000 */ |
|
2567 | #define ADC_SMPR2_SMP6 ((uint32_t)0x001C0000) /*!< SMP6[2:0] bits (Channel 6 Sample time selection) */ |
4247 | #define ADC_SMPR2_SMP6 ADC_SMPR2_SMP6_Msk /*!< ADC channel 6 sampling time selection */ |
2568 | #define ADC_SMPR2_SMP6_0 ((uint32_t)0x00040000) /*!< Bit 0 */ |
4248 | #define ADC_SMPR2_SMP6_0 (0x1U << ADC_SMPR2_SMP6_Pos) /*!< 0x00040000 */ |
2569 | #define ADC_SMPR2_SMP6_1 ((uint32_t)0x00080000) /*!< Bit 1 */ |
4249 | #define ADC_SMPR2_SMP6_1 (0x2U << ADC_SMPR2_SMP6_Pos) /*!< 0x00080000 */ |
2570 | #define ADC_SMPR2_SMP6_2 ((uint32_t)0x00100000) /*!< Bit 2 */ |
4250 | #define ADC_SMPR2_SMP6_2 (0x4U << ADC_SMPR2_SMP6_Pos) /*!< 0x00100000 */ |
2571 | 4251 | ||
- | 4252 | #define ADC_SMPR2_SMP7_Pos (21U) |
|
- | 4253 | #define ADC_SMPR2_SMP7_Msk (0x7U << ADC_SMPR2_SMP7_Pos) /*!< 0x00E00000 */ |
|
2572 | #define ADC_SMPR2_SMP7 ((uint32_t)0x00E00000) /*!< SMP7[2:0] bits (Channel 7 Sample time selection) */ |
4254 | #define ADC_SMPR2_SMP7 ADC_SMPR2_SMP7_Msk /*!< ADC channel 7 sampling time selection */ |
2573 | #define ADC_SMPR2_SMP7_0 ((uint32_t)0x00200000) /*!< Bit 0 */ |
4255 | #define ADC_SMPR2_SMP7_0 (0x1U << ADC_SMPR2_SMP7_Pos) /*!< 0x00200000 */ |
2574 | #define ADC_SMPR2_SMP7_1 ((uint32_t)0x00400000) /*!< Bit 1 */ |
4256 | #define ADC_SMPR2_SMP7_1 (0x2U << ADC_SMPR2_SMP7_Pos) /*!< 0x00400000 */ |
2575 | #define ADC_SMPR2_SMP7_2 ((uint32_t)0x00800000) /*!< Bit 2 */ |
4257 | #define ADC_SMPR2_SMP7_2 (0x4U << ADC_SMPR2_SMP7_Pos) /*!< 0x00800000 */ |
2576 | 4258 | ||
- | 4259 | #define ADC_SMPR2_SMP8_Pos (24U) |
|
- | 4260 | #define ADC_SMPR2_SMP8_Msk (0x7U << ADC_SMPR2_SMP8_Pos) /*!< 0x07000000 */ |
|
2577 | #define ADC_SMPR2_SMP8 ((uint32_t)0x07000000) /*!< SMP8[2:0] bits (Channel 8 Sample time selection) */ |
4261 | #define ADC_SMPR2_SMP8 ADC_SMPR2_SMP8_Msk /*!< ADC channel 8 sampling time selection */ |
2578 | #define ADC_SMPR2_SMP8_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
4262 | #define ADC_SMPR2_SMP8_0 (0x1U << ADC_SMPR2_SMP8_Pos) /*!< 0x01000000 */ |
2579 | #define ADC_SMPR2_SMP8_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
4263 | #define ADC_SMPR2_SMP8_1 (0x2U << ADC_SMPR2_SMP8_Pos) /*!< 0x02000000 */ |
2580 | #define ADC_SMPR2_SMP8_2 ((uint32_t)0x04000000) /*!< Bit 2 */ |
4264 | #define ADC_SMPR2_SMP8_2 (0x4U << ADC_SMPR2_SMP8_Pos) /*!< 0x04000000 */ |
2581 | 4265 | ||
- | 4266 | #define ADC_SMPR2_SMP9_Pos (27U) |
|
- | 4267 | #define ADC_SMPR2_SMP9_Msk (0x7U << ADC_SMPR2_SMP9_Pos) /*!< 0x38000000 */ |
|
2582 | #define ADC_SMPR2_SMP9 ((uint32_t)0x38000000) /*!< SMP9[2:0] bits (Channel 9 Sample time selection) */ |
4268 | #define ADC_SMPR2_SMP9 ADC_SMPR2_SMP9_Msk /*!< ADC channel 9 sampling time selection */ |
2583 | #define ADC_SMPR2_SMP9_0 ((uint32_t)0x08000000) /*!< Bit 0 */ |
4269 | #define ADC_SMPR2_SMP9_0 (0x1U << ADC_SMPR2_SMP9_Pos) /*!< 0x08000000 */ |
2584 | #define ADC_SMPR2_SMP9_1 ((uint32_t)0x10000000) /*!< Bit 1 */ |
4270 | #define ADC_SMPR2_SMP9_1 (0x2U << ADC_SMPR2_SMP9_Pos) /*!< 0x10000000 */ |
2585 | #define ADC_SMPR2_SMP9_2 ((uint32_t)0x20000000) /*!< Bit 2 */ |
4271 | #define ADC_SMPR2_SMP9_2 (0x4U << ADC_SMPR2_SMP9_Pos) /*!< 0x20000000 */ |
2586 | 4272 | ||
2587 | /****************** Bit definition for ADC_JOFR1 register *******************/ |
4273 | /****************** Bit definition for ADC_JOFR1 register *******************/ |
- | 4274 | #define ADC_JOFR1_JOFFSET1_Pos (0U) |
|
- | 4275 | #define ADC_JOFR1_JOFFSET1_Msk (0xFFFU << ADC_JOFR1_JOFFSET1_Pos) /*!< 0x00000FFF */ |
|
2588 | #define ADC_JOFR1_JOFFSET1 ((uint32_t)0x00000FFF) /*!< Data offset for injected channel 1 */ |
4276 | #define ADC_JOFR1_JOFFSET1 ADC_JOFR1_JOFFSET1_Msk /*!< ADC group injected sequencer rank 1 offset value */ |
2589 | 4277 | ||
2590 | /****************** Bit definition for ADC_JOFR2 register *******************/ |
4278 | /****************** Bit definition for ADC_JOFR2 register *******************/ |
- | 4279 | #define ADC_JOFR2_JOFFSET2_Pos (0U) |
|
- | 4280 | #define ADC_JOFR2_JOFFSET2_Msk (0xFFFU << ADC_JOFR2_JOFFSET2_Pos) /*!< 0x00000FFF */ |
|
2591 | #define ADC_JOFR2_JOFFSET2 ((uint32_t)0x00000FFF) /*!< Data offset for injected channel 2 */ |
4281 | #define ADC_JOFR2_JOFFSET2 ADC_JOFR2_JOFFSET2_Msk /*!< ADC group injected sequencer rank 2 offset value */ |
2592 | 4282 | ||
2593 | /****************** Bit definition for ADC_JOFR3 register *******************/ |
4283 | /****************** Bit definition for ADC_JOFR3 register *******************/ |
- | 4284 | #define ADC_JOFR3_JOFFSET3_Pos (0U) |
|
- | 4285 | #define ADC_JOFR3_JOFFSET3_Msk (0xFFFU << ADC_JOFR3_JOFFSET3_Pos) /*!< 0x00000FFF */ |
|
2594 | #define ADC_JOFR3_JOFFSET3 ((uint32_t)0x00000FFF) /*!< Data offset for injected channel 3 */ |
4286 | #define ADC_JOFR3_JOFFSET3 ADC_JOFR3_JOFFSET3_Msk /*!< ADC group injected sequencer rank 3 offset value */ |
2595 | 4287 | ||
2596 | /****************** Bit definition for ADC_JOFR4 register *******************/ |
4288 | /****************** Bit definition for ADC_JOFR4 register *******************/ |
- | 4289 | #define ADC_JOFR4_JOFFSET4_Pos (0U) |
|
- | 4290 | #define ADC_JOFR4_JOFFSET4_Msk (0xFFFU << ADC_JOFR4_JOFFSET4_Pos) /*!< 0x00000FFF */ |
|
2597 | #define ADC_JOFR4_JOFFSET4 ((uint32_t)0x00000FFF) /*!< Data offset for injected channel 4 */ |
4291 | #define ADC_JOFR4_JOFFSET4 ADC_JOFR4_JOFFSET4_Msk /*!< ADC group injected sequencer rank 4 offset value */ |
2598 | 4292 | ||
2599 | /******************* Bit definition for ADC_HTR register ********************/ |
4293 | /******************* Bit definition for ADC_HTR register ********************/ |
- | 4294 | #define ADC_HTR_HT_Pos (0U) |
|
- | 4295 | #define ADC_HTR_HT_Msk (0xFFFU << ADC_HTR_HT_Pos) /*!< 0x00000FFF */ |
|
2600 | #define ADC_HTR_HT ((uint32_t)0x00000FFF) /*!< Analog watchdog high threshold */ |
4296 | #define ADC_HTR_HT ADC_HTR_HT_Msk /*!< ADC analog watchdog 1 threshold high */ |
2601 | 4297 | ||
2602 | /******************* Bit definition for ADC_LTR register ********************/ |
4298 | /******************* Bit definition for ADC_LTR register ********************/ |
- | 4299 | #define ADC_LTR_LT_Pos (0U) |
|
- | 4300 | #define ADC_LTR_LT_Msk (0xFFFU << ADC_LTR_LT_Pos) /*!< 0x00000FFF */ |
|
2603 | #define ADC_LTR_LT ((uint32_t)0x00000FFF) /*!< Analog watchdog low threshold */ |
4301 | #define ADC_LTR_LT ADC_LTR_LT_Msk /*!< ADC analog watchdog 1 threshold low */ |
2604 | 4302 | ||
2605 | /******************* Bit definition for ADC_SQR1 register *******************/ |
4303 | /******************* Bit definition for ADC_SQR1 register *******************/ |
- | 4304 | #define ADC_SQR1_SQ13_Pos (0U) |
|
- | 4305 | #define ADC_SQR1_SQ13_Msk (0x1FU << ADC_SQR1_SQ13_Pos) /*!< 0x0000001F */ |
|
2606 | #define ADC_SQR1_SQ13 ((uint32_t)0x0000001F) /*!< SQ13[4:0] bits (13th conversion in regular sequence) */ |
4306 | #define ADC_SQR1_SQ13 ADC_SQR1_SQ13_Msk /*!< ADC group regular sequencer rank 13 */ |
2607 | #define ADC_SQR1_SQ13_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
4307 | #define ADC_SQR1_SQ13_0 (0x01U << ADC_SQR1_SQ13_Pos) /*!< 0x00000001 */ |
2608 | #define ADC_SQR1_SQ13_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
4308 | #define ADC_SQR1_SQ13_1 (0x02U << ADC_SQR1_SQ13_Pos) /*!< 0x00000002 */ |
2609 | #define ADC_SQR1_SQ13_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
4309 | #define ADC_SQR1_SQ13_2 (0x04U << ADC_SQR1_SQ13_Pos) /*!< 0x00000004 */ |
2610 | #define ADC_SQR1_SQ13_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
4310 | #define ADC_SQR1_SQ13_3 (0x08U << ADC_SQR1_SQ13_Pos) /*!< 0x00000008 */ |
2611 | #define ADC_SQR1_SQ13_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
4311 | #define ADC_SQR1_SQ13_4 (0x10U << ADC_SQR1_SQ13_Pos) /*!< 0x00000010 */ |
2612 | 4312 | ||
- | 4313 | #define ADC_SQR1_SQ14_Pos (5U) |
|
- | 4314 | #define ADC_SQR1_SQ14_Msk (0x1FU << ADC_SQR1_SQ14_Pos) /*!< 0x000003E0 */ |
|
2613 | #define ADC_SQR1_SQ14 ((uint32_t)0x000003E0) /*!< SQ14[4:0] bits (14th conversion in regular sequence) */ |
4315 | #define ADC_SQR1_SQ14 ADC_SQR1_SQ14_Msk /*!< ADC group regular sequencer rank 14 */ |
2614 | #define ADC_SQR1_SQ14_0 ((uint32_t)0x00000020) /*!< Bit 0 */ |
4316 | #define ADC_SQR1_SQ14_0 (0x01U << ADC_SQR1_SQ14_Pos) /*!< 0x00000020 */ |
2615 | #define ADC_SQR1_SQ14_1 ((uint32_t)0x00000040) /*!< Bit 1 */ |
4317 | #define ADC_SQR1_SQ14_1 (0x02U << ADC_SQR1_SQ14_Pos) /*!< 0x00000040 */ |
2616 | #define ADC_SQR1_SQ14_2 ((uint32_t)0x00000080) /*!< Bit 2 */ |
4318 | #define ADC_SQR1_SQ14_2 (0x04U << ADC_SQR1_SQ14_Pos) /*!< 0x00000080 */ |
2617 | #define ADC_SQR1_SQ14_3 ((uint32_t)0x00000100) /*!< Bit 3 */ |
4319 | #define ADC_SQR1_SQ14_3 (0x08U << ADC_SQR1_SQ14_Pos) /*!< 0x00000100 */ |
2618 | #define ADC_SQR1_SQ14_4 ((uint32_t)0x00000200) /*!< Bit 4 */ |
4320 | #define ADC_SQR1_SQ14_4 (0x10U << ADC_SQR1_SQ14_Pos) /*!< 0x00000200 */ |
2619 | 4321 | ||
- | 4322 | #define ADC_SQR1_SQ15_Pos (10U) |
|
- | 4323 | #define ADC_SQR1_SQ15_Msk (0x1FU << ADC_SQR1_SQ15_Pos) /*!< 0x00007C00 */ |
|
2620 | #define ADC_SQR1_SQ15 ((uint32_t)0x00007C00) /*!< SQ15[4:0] bits (15th conversion in regular sequence) */ |
4324 | #define ADC_SQR1_SQ15 ADC_SQR1_SQ15_Msk /*!< ADC group regular sequencer rank 15 */ |
2621 | #define ADC_SQR1_SQ15_0 ((uint32_t)0x00000400) /*!< Bit 0 */ |
4325 | #define ADC_SQR1_SQ15_0 (0x01U << ADC_SQR1_SQ15_Pos) /*!< 0x00000400 */ |
2622 | #define ADC_SQR1_SQ15_1 ((uint32_t)0x00000800) /*!< Bit 1 */ |
4326 | #define ADC_SQR1_SQ15_1 (0x02U << ADC_SQR1_SQ15_Pos) /*!< 0x00000800 */ |
2623 | #define ADC_SQR1_SQ15_2 ((uint32_t)0x00001000) /*!< Bit 2 */ |
4327 | #define ADC_SQR1_SQ15_2 (0x04U << ADC_SQR1_SQ15_Pos) /*!< 0x00001000 */ |
2624 | #define ADC_SQR1_SQ15_3 ((uint32_t)0x00002000) /*!< Bit 3 */ |
4328 | #define ADC_SQR1_SQ15_3 (0x08U << ADC_SQR1_SQ15_Pos) /*!< 0x00002000 */ |
2625 | #define ADC_SQR1_SQ15_4 ((uint32_t)0x00004000) /*!< Bit 4 */ |
4329 | #define ADC_SQR1_SQ15_4 (0x10U << ADC_SQR1_SQ15_Pos) /*!< 0x00004000 */ |
2626 | 4330 | ||
- | 4331 | #define ADC_SQR1_SQ16_Pos (15U) |
|
- | 4332 | #define ADC_SQR1_SQ16_Msk (0x1FU << ADC_SQR1_SQ16_Pos) /*!< 0x000F8000 */ |
|
2627 | #define ADC_SQR1_SQ16 ((uint32_t)0x000F8000) /*!< SQ16[4:0] bits (16th conversion in regular sequence) */ |
4333 | #define ADC_SQR1_SQ16 ADC_SQR1_SQ16_Msk /*!< ADC group regular sequencer rank 16 */ |
2628 | #define ADC_SQR1_SQ16_0 ((uint32_t)0x00008000) /*!< Bit 0 */ |
4334 | #define ADC_SQR1_SQ16_0 (0x01U << ADC_SQR1_SQ16_Pos) /*!< 0x00008000 */ |
2629 | #define ADC_SQR1_SQ16_1 ((uint32_t)0x00010000) /*!< Bit 1 */ |
4335 | #define ADC_SQR1_SQ16_1 (0x02U << ADC_SQR1_SQ16_Pos) /*!< 0x00010000 */ |
2630 | #define ADC_SQR1_SQ16_2 ((uint32_t)0x00020000) /*!< Bit 2 */ |
4336 | #define ADC_SQR1_SQ16_2 (0x04U << ADC_SQR1_SQ16_Pos) /*!< 0x00020000 */ |
2631 | #define ADC_SQR1_SQ16_3 ((uint32_t)0x00040000) /*!< Bit 3 */ |
4337 | #define ADC_SQR1_SQ16_3 (0x08U << ADC_SQR1_SQ16_Pos) /*!< 0x00040000 */ |
2632 | #define ADC_SQR1_SQ16_4 ((uint32_t)0x00080000) /*!< Bit 4 */ |
4338 | #define ADC_SQR1_SQ16_4 (0x10U << ADC_SQR1_SQ16_Pos) /*!< 0x00080000 */ |
2633 | 4339 | ||
- | 4340 | #define ADC_SQR1_L_Pos (20U) |
|
- | 4341 | #define ADC_SQR1_L_Msk (0xFU << ADC_SQR1_L_Pos) /*!< 0x00F00000 */ |
|
2634 | #define ADC_SQR1_L ((uint32_t)0x00F00000) /*!< L[3:0] bits (Regular channel sequence length) */ |
4342 | #define ADC_SQR1_L ADC_SQR1_L_Msk /*!< ADC group regular sequencer scan length */ |
2635 | #define ADC_SQR1_L_0 ((uint32_t)0x00100000) /*!< Bit 0 */ |
4343 | #define ADC_SQR1_L_0 (0x1U << ADC_SQR1_L_Pos) /*!< 0x00100000 */ |
2636 | #define ADC_SQR1_L_1 ((uint32_t)0x00200000) /*!< Bit 1 */ |
4344 | #define ADC_SQR1_L_1 (0x2U << ADC_SQR1_L_Pos) /*!< 0x00200000 */ |
2637 | #define ADC_SQR1_L_2 ((uint32_t)0x00400000) /*!< Bit 2 */ |
4345 | #define ADC_SQR1_L_2 (0x4U << ADC_SQR1_L_Pos) /*!< 0x00400000 */ |
2638 | #define ADC_SQR1_L_3 ((uint32_t)0x00800000) /*!< Bit 3 */ |
4346 | #define ADC_SQR1_L_3 (0x8U << ADC_SQR1_L_Pos) /*!< 0x00800000 */ |
2639 | 4347 | ||
2640 | /******************* Bit definition for ADC_SQR2 register *******************/ |
4348 | /******************* Bit definition for ADC_SQR2 register *******************/ |
- | 4349 | #define ADC_SQR2_SQ7_Pos (0U) |
|
- | 4350 | #define ADC_SQR2_SQ7_Msk (0x1FU << ADC_SQR2_SQ7_Pos) /*!< 0x0000001F */ |
|
2641 | #define ADC_SQR2_SQ7 ((uint32_t)0x0000001F) /*!< SQ7[4:0] bits (7th conversion in regular sequence) */ |
4351 | #define ADC_SQR2_SQ7 ADC_SQR2_SQ7_Msk /*!< ADC group regular sequencer rank 7 */ |
2642 | #define ADC_SQR2_SQ7_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
4352 | #define ADC_SQR2_SQ7_0 (0x01U << ADC_SQR2_SQ7_Pos) /*!< 0x00000001 */ |
2643 | #define ADC_SQR2_SQ7_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
4353 | #define ADC_SQR2_SQ7_1 (0x02U << ADC_SQR2_SQ7_Pos) /*!< 0x00000002 */ |
2644 | #define ADC_SQR2_SQ7_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
4354 | #define ADC_SQR2_SQ7_2 (0x04U << ADC_SQR2_SQ7_Pos) /*!< 0x00000004 */ |
2645 | #define ADC_SQR2_SQ7_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
4355 | #define ADC_SQR2_SQ7_3 (0x08U << ADC_SQR2_SQ7_Pos) /*!< 0x00000008 */ |
2646 | #define ADC_SQR2_SQ7_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
4356 | #define ADC_SQR2_SQ7_4 (0x10U << ADC_SQR2_SQ7_Pos) /*!< 0x00000010 */ |
2647 | 4357 | ||
- | 4358 | #define ADC_SQR2_SQ8_Pos (5U) |
|
- | 4359 | #define ADC_SQR2_SQ8_Msk (0x1FU << ADC_SQR2_SQ8_Pos) /*!< 0x000003E0 */ |
|
2648 | #define ADC_SQR2_SQ8 ((uint32_t)0x000003E0) /*!< SQ8[4:0] bits (8th conversion in regular sequence) */ |
4360 | #define ADC_SQR2_SQ8 ADC_SQR2_SQ8_Msk /*!< ADC group regular sequencer rank 8 */ |
2649 | #define ADC_SQR2_SQ8_0 ((uint32_t)0x00000020) /*!< Bit 0 */ |
4361 | #define ADC_SQR2_SQ8_0 (0x01U << ADC_SQR2_SQ8_Pos) /*!< 0x00000020 */ |
2650 | #define ADC_SQR2_SQ8_1 ((uint32_t)0x00000040) /*!< Bit 1 */ |
4362 | #define ADC_SQR2_SQ8_1 (0x02U << ADC_SQR2_SQ8_Pos) /*!< 0x00000040 */ |
2651 | #define ADC_SQR2_SQ8_2 ((uint32_t)0x00000080) /*!< Bit 2 */ |
4363 | #define ADC_SQR2_SQ8_2 (0x04U << ADC_SQR2_SQ8_Pos) /*!< 0x00000080 */ |
2652 | #define ADC_SQR2_SQ8_3 ((uint32_t)0x00000100) /*!< Bit 3 */ |
4364 | #define ADC_SQR2_SQ8_3 (0x08U << ADC_SQR2_SQ8_Pos) /*!< 0x00000100 */ |
2653 | #define ADC_SQR2_SQ8_4 ((uint32_t)0x00000200) /*!< Bit 4 */ |
4365 | #define ADC_SQR2_SQ8_4 (0x10U << ADC_SQR2_SQ8_Pos) /*!< 0x00000200 */ |
2654 | 4366 | ||
- | 4367 | #define ADC_SQR2_SQ9_Pos (10U) |
|
- | 4368 | #define ADC_SQR2_SQ9_Msk (0x1FU << ADC_SQR2_SQ9_Pos) /*!< 0x00007C00 */ |
|
2655 | #define ADC_SQR2_SQ9 ((uint32_t)0x00007C00) /*!< SQ9[4:0] bits (9th conversion in regular sequence) */ |
4369 | #define ADC_SQR2_SQ9 ADC_SQR2_SQ9_Msk /*!< ADC group regular sequencer rank 9 */ |
2656 | #define ADC_SQR2_SQ9_0 ((uint32_t)0x00000400) /*!< Bit 0 */ |
4370 | #define ADC_SQR2_SQ9_0 (0x01U << ADC_SQR2_SQ9_Pos) /*!< 0x00000400 */ |
2657 | #define ADC_SQR2_SQ9_1 ((uint32_t)0x00000800) /*!< Bit 1 */ |
4371 | #define ADC_SQR2_SQ9_1 (0x02U << ADC_SQR2_SQ9_Pos) /*!< 0x00000800 */ |
2658 | #define ADC_SQR2_SQ9_2 ((uint32_t)0x00001000) /*!< Bit 2 */ |
4372 | #define ADC_SQR2_SQ9_2 (0x04U << ADC_SQR2_SQ9_Pos) /*!< 0x00001000 */ |
2659 | #define ADC_SQR2_SQ9_3 ((uint32_t)0x00002000) /*!< Bit 3 */ |
4373 | #define ADC_SQR2_SQ9_3 (0x08U << ADC_SQR2_SQ9_Pos) /*!< 0x00002000 */ |
2660 | #define ADC_SQR2_SQ9_4 ((uint32_t)0x00004000) /*!< Bit 4 */ |
4374 | #define ADC_SQR2_SQ9_4 (0x10U << ADC_SQR2_SQ9_Pos) /*!< 0x00004000 */ |
2661 | 4375 | ||
- | 4376 | #define ADC_SQR2_SQ10_Pos (15U) |
|
- | 4377 | #define ADC_SQR2_SQ10_Msk (0x1FU << ADC_SQR2_SQ10_Pos) /*!< 0x000F8000 */ |
|
2662 | #define ADC_SQR2_SQ10 ((uint32_t)0x000F8000) /*!< SQ10[4:0] bits (10th conversion in regular sequence) */ |
4378 | #define ADC_SQR2_SQ10 ADC_SQR2_SQ10_Msk /*!< ADC group regular sequencer rank 10 */ |
2663 | #define ADC_SQR2_SQ10_0 ((uint32_t)0x00008000) /*!< Bit 0 */ |
4379 | #define ADC_SQR2_SQ10_0 (0x01U << ADC_SQR2_SQ10_Pos) /*!< 0x00008000 */ |
2664 | #define ADC_SQR2_SQ10_1 ((uint32_t)0x00010000) /*!< Bit 1 */ |
4380 | #define ADC_SQR2_SQ10_1 (0x02U << ADC_SQR2_SQ10_Pos) /*!< 0x00010000 */ |
2665 | #define ADC_SQR2_SQ10_2 ((uint32_t)0x00020000) /*!< Bit 2 */ |
4381 | #define ADC_SQR2_SQ10_2 (0x04U << ADC_SQR2_SQ10_Pos) /*!< 0x00020000 */ |
2666 | #define ADC_SQR2_SQ10_3 ((uint32_t)0x00040000) /*!< Bit 3 */ |
4382 | #define ADC_SQR2_SQ10_3 (0x08U << ADC_SQR2_SQ10_Pos) /*!< 0x00040000 */ |
2667 | #define ADC_SQR2_SQ10_4 ((uint32_t)0x00080000) /*!< Bit 4 */ |
4383 | #define ADC_SQR2_SQ10_4 (0x10U << ADC_SQR2_SQ10_Pos) /*!< 0x00080000 */ |
2668 | 4384 | ||
- | 4385 | #define ADC_SQR2_SQ11_Pos (20U) |
|
- | 4386 | #define ADC_SQR2_SQ11_Msk (0x1FU << ADC_SQR2_SQ11_Pos) /*!< 0x01F00000 */ |
|
2669 | #define ADC_SQR2_SQ11 ((uint32_t)0x01F00000) /*!< SQ11[4:0] bits (11th conversion in regular sequence) */ |
4387 | #define ADC_SQR2_SQ11 ADC_SQR2_SQ11_Msk /*!< ADC group regular sequencer rank 1 */ |
2670 | #define ADC_SQR2_SQ11_0 ((uint32_t)0x00100000) /*!< Bit 0 */ |
4388 | #define ADC_SQR2_SQ11_0 (0x01U << ADC_SQR2_SQ11_Pos) /*!< 0x00100000 */ |
2671 | #define ADC_SQR2_SQ11_1 ((uint32_t)0x00200000) /*!< Bit 1 */ |
4389 | #define ADC_SQR2_SQ11_1 (0x02U << ADC_SQR2_SQ11_Pos) /*!< 0x00200000 */ |
2672 | #define ADC_SQR2_SQ11_2 ((uint32_t)0x00400000) /*!< Bit 2 */ |
4390 | #define ADC_SQR2_SQ11_2 (0x04U << ADC_SQR2_SQ11_Pos) /*!< 0x00400000 */ |
2673 | #define ADC_SQR2_SQ11_3 ((uint32_t)0x00800000) /*!< Bit 3 */ |
4391 | #define ADC_SQR2_SQ11_3 (0x08U << ADC_SQR2_SQ11_Pos) /*!< 0x00800000 */ |
2674 | #define ADC_SQR2_SQ11_4 ((uint32_t)0x01000000) /*!< Bit 4 */ |
4392 | #define ADC_SQR2_SQ11_4 (0x10U << ADC_SQR2_SQ11_Pos) /*!< 0x01000000 */ |
2675 | 4393 | ||
- | 4394 | #define ADC_SQR2_SQ12_Pos (25U) |
|
- | 4395 | #define ADC_SQR2_SQ12_Msk (0x1FU << ADC_SQR2_SQ12_Pos) /*!< 0x3E000000 */ |
|
2676 | #define ADC_SQR2_SQ12 ((uint32_t)0x3E000000) /*!< SQ12[4:0] bits (12th conversion in regular sequence) */ |
4396 | #define ADC_SQR2_SQ12 ADC_SQR2_SQ12_Msk /*!< ADC group regular sequencer rank 12 */ |
2677 | #define ADC_SQR2_SQ12_0 ((uint32_t)0x02000000) /*!< Bit 0 */ |
4397 | #define ADC_SQR2_SQ12_0 (0x01U << ADC_SQR2_SQ12_Pos) /*!< 0x02000000 */ |
2678 | #define ADC_SQR2_SQ12_1 ((uint32_t)0x04000000) /*!< Bit 1 */ |
4398 | #define ADC_SQR2_SQ12_1 (0x02U << ADC_SQR2_SQ12_Pos) /*!< 0x04000000 */ |
2679 | #define ADC_SQR2_SQ12_2 ((uint32_t)0x08000000) /*!< Bit 2 */ |
4399 | #define ADC_SQR2_SQ12_2 (0x04U << ADC_SQR2_SQ12_Pos) /*!< 0x08000000 */ |
2680 | #define ADC_SQR2_SQ12_3 ((uint32_t)0x10000000) /*!< Bit 3 */ |
4400 | #define ADC_SQR2_SQ12_3 (0x08U << ADC_SQR2_SQ12_Pos) /*!< 0x10000000 */ |
2681 | #define ADC_SQR2_SQ12_4 ((uint32_t)0x20000000) /*!< Bit 4 */ |
4401 | #define ADC_SQR2_SQ12_4 (0x10U << ADC_SQR2_SQ12_Pos) /*!< 0x20000000 */ |
2682 | 4402 | ||
2683 | /******************* Bit definition for ADC_SQR3 register *******************/ |
4403 | /******************* Bit definition for ADC_SQR3 register *******************/ |
- | 4404 | #define ADC_SQR3_SQ1_Pos (0U) |
|
- | 4405 | #define ADC_SQR3_SQ1_Msk (0x1FU << ADC_SQR3_SQ1_Pos) /*!< 0x0000001F */ |
|
2684 | #define ADC_SQR3_SQ1 ((uint32_t)0x0000001F) /*!< SQ1[4:0] bits (1st conversion in regular sequence) */ |
4406 | #define ADC_SQR3_SQ1 ADC_SQR3_SQ1_Msk /*!< ADC group regular sequencer rank 1 */ |
2685 | #define ADC_SQR3_SQ1_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
4407 | #define ADC_SQR3_SQ1_0 (0x01U << ADC_SQR3_SQ1_Pos) /*!< 0x00000001 */ |
2686 | #define ADC_SQR3_SQ1_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
4408 | #define ADC_SQR3_SQ1_1 (0x02U << ADC_SQR3_SQ1_Pos) /*!< 0x00000002 */ |
2687 | #define ADC_SQR3_SQ1_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
4409 | #define ADC_SQR3_SQ1_2 (0x04U << ADC_SQR3_SQ1_Pos) /*!< 0x00000004 */ |
2688 | #define ADC_SQR3_SQ1_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
4410 | #define ADC_SQR3_SQ1_3 (0x08U << ADC_SQR3_SQ1_Pos) /*!< 0x00000008 */ |
2689 | #define ADC_SQR3_SQ1_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
4411 | #define ADC_SQR3_SQ1_4 (0x10U << ADC_SQR3_SQ1_Pos) /*!< 0x00000010 */ |
2690 | 4412 | ||
- | 4413 | #define ADC_SQR3_SQ2_Pos (5U) |
|
- | 4414 | #define ADC_SQR3_SQ2_Msk (0x1FU << ADC_SQR3_SQ2_Pos) /*!< 0x000003E0 */ |
|
2691 | #define ADC_SQR3_SQ2 ((uint32_t)0x000003E0) /*!< SQ2[4:0] bits (2nd conversion in regular sequence) */ |
4415 | #define ADC_SQR3_SQ2 ADC_SQR3_SQ2_Msk /*!< ADC group regular sequencer rank 2 */ |
2692 | #define ADC_SQR3_SQ2_0 ((uint32_t)0x00000020) /*!< Bit 0 */ |
4416 | #define ADC_SQR3_SQ2_0 (0x01U << ADC_SQR3_SQ2_Pos) /*!< 0x00000020 */ |
2693 | #define ADC_SQR3_SQ2_1 ((uint32_t)0x00000040) /*!< Bit 1 */ |
4417 | #define ADC_SQR3_SQ2_1 (0x02U << ADC_SQR3_SQ2_Pos) /*!< 0x00000040 */ |
2694 | #define ADC_SQR3_SQ2_2 ((uint32_t)0x00000080) /*!< Bit 2 */ |
4418 | #define ADC_SQR3_SQ2_2 (0x04U << ADC_SQR3_SQ2_Pos) /*!< 0x00000080 */ |
2695 | #define ADC_SQR3_SQ2_3 ((uint32_t)0x00000100) /*!< Bit 3 */ |
4419 | #define ADC_SQR3_SQ2_3 (0x08U << ADC_SQR3_SQ2_Pos) /*!< 0x00000100 */ |
2696 | #define ADC_SQR3_SQ2_4 ((uint32_t)0x00000200) /*!< Bit 4 */ |
4420 | #define ADC_SQR3_SQ2_4 (0x10U << ADC_SQR3_SQ2_Pos) /*!< 0x00000200 */ |
2697 | 4421 | ||
- | 4422 | #define ADC_SQR3_SQ3_Pos (10U) |
|
- | 4423 | #define ADC_SQR3_SQ3_Msk (0x1FU << ADC_SQR3_SQ3_Pos) /*!< 0x00007C00 */ |
|
2698 | #define ADC_SQR3_SQ3 ((uint32_t)0x00007C00) /*!< SQ3[4:0] bits (3rd conversion in regular sequence) */ |
4424 | #define ADC_SQR3_SQ3 ADC_SQR3_SQ3_Msk /*!< ADC group regular sequencer rank 3 */ |
2699 | #define ADC_SQR3_SQ3_0 ((uint32_t)0x00000400) /*!< Bit 0 */ |
4425 | #define ADC_SQR3_SQ3_0 (0x01U << ADC_SQR3_SQ3_Pos) /*!< 0x00000400 */ |
2700 | #define ADC_SQR3_SQ3_1 ((uint32_t)0x00000800) /*!< Bit 1 */ |
4426 | #define ADC_SQR3_SQ3_1 (0x02U << ADC_SQR3_SQ3_Pos) /*!< 0x00000800 */ |
2701 | #define ADC_SQR3_SQ3_2 ((uint32_t)0x00001000) /*!< Bit 2 */ |
4427 | #define ADC_SQR3_SQ3_2 (0x04U << ADC_SQR3_SQ3_Pos) /*!< 0x00001000 */ |
2702 | #define ADC_SQR3_SQ3_3 ((uint32_t)0x00002000) /*!< Bit 3 */ |
4428 | #define ADC_SQR3_SQ3_3 (0x08U << ADC_SQR3_SQ3_Pos) /*!< 0x00002000 */ |
2703 | #define ADC_SQR3_SQ3_4 ((uint32_t)0x00004000) /*!< Bit 4 */ |
4429 | #define ADC_SQR3_SQ3_4 (0x10U << ADC_SQR3_SQ3_Pos) /*!< 0x00004000 */ |
2704 | 4430 | ||
- | 4431 | #define ADC_SQR3_SQ4_Pos (15U) |
|
- | 4432 | #define ADC_SQR3_SQ4_Msk (0x1FU << ADC_SQR3_SQ4_Pos) /*!< 0x000F8000 */ |
|
2705 | #define ADC_SQR3_SQ4 ((uint32_t)0x000F8000) /*!< SQ4[4:0] bits (4th conversion in regular sequence) */ |
4433 | #define ADC_SQR3_SQ4 ADC_SQR3_SQ4_Msk /*!< ADC group regular sequencer rank 4 */ |
2706 | #define ADC_SQR3_SQ4_0 ((uint32_t)0x00008000) /*!< Bit 0 */ |
4434 | #define ADC_SQR3_SQ4_0 (0x01U << ADC_SQR3_SQ4_Pos) /*!< 0x00008000 */ |
2707 | #define ADC_SQR3_SQ4_1 ((uint32_t)0x00010000) /*!< Bit 1 */ |
4435 | #define ADC_SQR3_SQ4_1 (0x02U << ADC_SQR3_SQ4_Pos) /*!< 0x00010000 */ |
2708 | #define ADC_SQR3_SQ4_2 ((uint32_t)0x00020000) /*!< Bit 2 */ |
4436 | #define ADC_SQR3_SQ4_2 (0x04U << ADC_SQR3_SQ4_Pos) /*!< 0x00020000 */ |
2709 | #define ADC_SQR3_SQ4_3 ((uint32_t)0x00040000) /*!< Bit 3 */ |
4437 | #define ADC_SQR3_SQ4_3 (0x08U << ADC_SQR3_SQ4_Pos) /*!< 0x00040000 */ |
2710 | #define ADC_SQR3_SQ4_4 ((uint32_t)0x00080000) /*!< Bit 4 */ |
4438 | #define ADC_SQR3_SQ4_4 (0x10U << ADC_SQR3_SQ4_Pos) /*!< 0x00080000 */ |
2711 | 4439 | ||
- | 4440 | #define ADC_SQR3_SQ5_Pos (20U) |
|
- | 4441 | #define ADC_SQR3_SQ5_Msk (0x1FU << ADC_SQR3_SQ5_Pos) /*!< 0x01F00000 */ |
|
2712 | #define ADC_SQR3_SQ5 ((uint32_t)0x01F00000) /*!< SQ5[4:0] bits (5th conversion in regular sequence) */ |
4442 | #define ADC_SQR3_SQ5 ADC_SQR3_SQ5_Msk /*!< ADC group regular sequencer rank 5 */ |
2713 | #define ADC_SQR3_SQ5_0 ((uint32_t)0x00100000) /*!< Bit 0 */ |
4443 | #define ADC_SQR3_SQ5_0 (0x01U << ADC_SQR3_SQ5_Pos) /*!< 0x00100000 */ |
2714 | #define ADC_SQR3_SQ5_1 ((uint32_t)0x00200000) /*!< Bit 1 */ |
4444 | #define ADC_SQR3_SQ5_1 (0x02U << ADC_SQR3_SQ5_Pos) /*!< 0x00200000 */ |
2715 | #define ADC_SQR3_SQ5_2 ((uint32_t)0x00400000) /*!< Bit 2 */ |
4445 | #define ADC_SQR3_SQ5_2 (0x04U << ADC_SQR3_SQ5_Pos) /*!< 0x00400000 */ |
2716 | #define ADC_SQR3_SQ5_3 ((uint32_t)0x00800000) /*!< Bit 3 */ |
4446 | #define ADC_SQR3_SQ5_3 (0x08U << ADC_SQR3_SQ5_Pos) /*!< 0x00800000 */ |
2717 | #define ADC_SQR3_SQ5_4 ((uint32_t)0x01000000) /*!< Bit 4 */ |
4447 | #define ADC_SQR3_SQ5_4 (0x10U << ADC_SQR3_SQ5_Pos) /*!< 0x01000000 */ |
2718 | 4448 | ||
- | 4449 | #define ADC_SQR3_SQ6_Pos (25U) |
|
- | 4450 | #define ADC_SQR3_SQ6_Msk (0x1FU << ADC_SQR3_SQ6_Pos) /*!< 0x3E000000 */ |
|
2719 | #define ADC_SQR3_SQ6 ((uint32_t)0x3E000000) /*!< SQ6[4:0] bits (6th conversion in regular sequence) */ |
4451 | #define ADC_SQR3_SQ6 ADC_SQR3_SQ6_Msk /*!< ADC group regular sequencer rank 6 */ |
2720 | #define ADC_SQR3_SQ6_0 ((uint32_t)0x02000000) /*!< Bit 0 */ |
4452 | #define ADC_SQR3_SQ6_0 (0x01U << ADC_SQR3_SQ6_Pos) /*!< 0x02000000 */ |
2721 | #define ADC_SQR3_SQ6_1 ((uint32_t)0x04000000) /*!< Bit 1 */ |
4453 | #define ADC_SQR3_SQ6_1 (0x02U << ADC_SQR3_SQ6_Pos) /*!< 0x04000000 */ |
2722 | #define ADC_SQR3_SQ6_2 ((uint32_t)0x08000000) /*!< Bit 2 */ |
4454 | #define ADC_SQR3_SQ6_2 (0x04U << ADC_SQR3_SQ6_Pos) /*!< 0x08000000 */ |
2723 | #define ADC_SQR3_SQ6_3 ((uint32_t)0x10000000) /*!< Bit 3 */ |
4455 | #define ADC_SQR3_SQ6_3 (0x08U << ADC_SQR3_SQ6_Pos) /*!< 0x10000000 */ |
2724 | #define ADC_SQR3_SQ6_4 ((uint32_t)0x20000000) /*!< Bit 4 */ |
4456 | #define ADC_SQR3_SQ6_4 (0x10U << ADC_SQR3_SQ6_Pos) /*!< 0x20000000 */ |
2725 | 4457 | ||
2726 | /******************* Bit definition for ADC_JSQR register *******************/ |
4458 | /******************* Bit definition for ADC_JSQR register *******************/ |
- | 4459 | #define ADC_JSQR_JSQ1_Pos (0U) |
|
- | 4460 | #define ADC_JSQR_JSQ1_Msk (0x1FU << ADC_JSQR_JSQ1_Pos) /*!< 0x0000001F */ |
|
2727 | #define ADC_JSQR_JSQ1 ((uint32_t)0x0000001F) /*!< JSQ1[4:0] bits (1st conversion in injected sequence) */ |
4461 | #define ADC_JSQR_JSQ1 ADC_JSQR_JSQ1_Msk /*!< ADC group injected sequencer rank 1 */ |
2728 | #define ADC_JSQR_JSQ1_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
4462 | #define ADC_JSQR_JSQ1_0 (0x01U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000001 */ |
2729 | #define ADC_JSQR_JSQ1_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
4463 | #define ADC_JSQR_JSQ1_1 (0x02U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000002 */ |
2730 | #define ADC_JSQR_JSQ1_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
4464 | #define ADC_JSQR_JSQ1_2 (0x04U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000004 */ |
2731 | #define ADC_JSQR_JSQ1_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
4465 | #define ADC_JSQR_JSQ1_3 (0x08U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000008 */ |
2732 | #define ADC_JSQR_JSQ1_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
4466 | #define ADC_JSQR_JSQ1_4 (0x10U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000010 */ |
2733 | 4467 | ||
- | 4468 | #define ADC_JSQR_JSQ2_Pos (5U) |
|
- | 4469 | #define ADC_JSQR_JSQ2_Msk (0x1FU << ADC_JSQR_JSQ2_Pos) /*!< 0x000003E0 */ |
|
2734 | #define ADC_JSQR_JSQ2 ((uint32_t)0x000003E0) /*!< JSQ2[4:0] bits (2nd conversion in injected sequence) */ |
4470 | #define ADC_JSQR_JSQ2 ADC_JSQR_JSQ2_Msk /*!< ADC group injected sequencer rank 2 */ |
2735 | #define ADC_JSQR_JSQ2_0 ((uint32_t)0x00000020) /*!< Bit 0 */ |
4471 | #define ADC_JSQR_JSQ2_0 (0x01U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000020 */ |
2736 | #define ADC_JSQR_JSQ2_1 ((uint32_t)0x00000040) /*!< Bit 1 */ |
4472 | #define ADC_JSQR_JSQ2_1 (0x02U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000040 */ |
2737 | #define ADC_JSQR_JSQ2_2 ((uint32_t)0x00000080) /*!< Bit 2 */ |
4473 | #define ADC_JSQR_JSQ2_2 (0x04U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000080 */ |
2738 | #define ADC_JSQR_JSQ2_3 ((uint32_t)0x00000100) /*!< Bit 3 */ |
4474 | #define ADC_JSQR_JSQ2_3 (0x08U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000100 */ |
2739 | #define ADC_JSQR_JSQ2_4 ((uint32_t)0x00000200) /*!< Bit 4 */ |
4475 | #define ADC_JSQR_JSQ2_4 (0x10U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000200 */ |
2740 | 4476 | ||
- | 4477 | #define ADC_JSQR_JSQ3_Pos (10U) |
|
- | 4478 | #define ADC_JSQR_JSQ3_Msk (0x1FU << ADC_JSQR_JSQ3_Pos) /*!< 0x00007C00 */ |
|
2741 | #define ADC_JSQR_JSQ3 ((uint32_t)0x00007C00) /*!< JSQ3[4:0] bits (3rd conversion in injected sequence) */ |
4479 | #define ADC_JSQR_JSQ3 ADC_JSQR_JSQ3_Msk /*!< ADC group injected sequencer rank 3 */ |
2742 | #define ADC_JSQR_JSQ3_0 ((uint32_t)0x00000400) /*!< Bit 0 */ |
4480 | #define ADC_JSQR_JSQ3_0 (0x01U << ADC_JSQR_JSQ3_Pos) /*!< 0x00000400 */ |
2743 | #define ADC_JSQR_JSQ3_1 ((uint32_t)0x00000800) /*!< Bit 1 */ |
4481 | #define ADC_JSQR_JSQ3_1 (0x02U << ADC_JSQR_JSQ3_Pos) /*!< 0x00000800 */ |
2744 | #define ADC_JSQR_JSQ3_2 ((uint32_t)0x00001000) /*!< Bit 2 */ |
4482 | #define ADC_JSQR_JSQ3_2 (0x04U << ADC_JSQR_JSQ3_Pos) /*!< 0x00001000 */ |
2745 | #define ADC_JSQR_JSQ3_3 ((uint32_t)0x00002000) /*!< Bit 3 */ |
4483 | #define ADC_JSQR_JSQ3_3 (0x08U << ADC_JSQR_JSQ3_Pos) /*!< 0x00002000 */ |
2746 | #define ADC_JSQR_JSQ3_4 ((uint32_t)0x00004000) /*!< Bit 4 */ |
4484 | #define ADC_JSQR_JSQ3_4 (0x10U << ADC_JSQR_JSQ3_Pos) /*!< 0x00004000 */ |
2747 | 4485 | ||
- | 4486 | #define ADC_JSQR_JSQ4_Pos (15U) |
|
- | 4487 | #define ADC_JSQR_JSQ4_Msk (0x1FU << ADC_JSQR_JSQ4_Pos) /*!< 0x000F8000 */ |
|
2748 | #define ADC_JSQR_JSQ4 ((uint32_t)0x000F8000) /*!< JSQ4[4:0] bits (4th conversion in injected sequence) */ |
4488 | #define ADC_JSQR_JSQ4 ADC_JSQR_JSQ4_Msk /*!< ADC group injected sequencer rank 4 */ |
2749 | #define ADC_JSQR_JSQ4_0 ((uint32_t)0x00008000) /*!< Bit 0 */ |
4489 | #define ADC_JSQR_JSQ4_0 (0x01U << ADC_JSQR_JSQ4_Pos) /*!< 0x00008000 */ |
2750 | #define ADC_JSQR_JSQ4_1 ((uint32_t)0x00010000) /*!< Bit 1 */ |
4490 | #define ADC_JSQR_JSQ4_1 (0x02U << ADC_JSQR_JSQ4_Pos) /*!< 0x00010000 */ |
2751 | #define ADC_JSQR_JSQ4_2 ((uint32_t)0x00020000) /*!< Bit 2 */ |
4491 | #define ADC_JSQR_JSQ4_2 (0x04U << ADC_JSQR_JSQ4_Pos) /*!< 0x00020000 */ |
2752 | #define ADC_JSQR_JSQ4_3 ((uint32_t)0x00040000) /*!< Bit 3 */ |
4492 | #define ADC_JSQR_JSQ4_3 (0x08U << ADC_JSQR_JSQ4_Pos) /*!< 0x00040000 */ |
2753 | #define ADC_JSQR_JSQ4_4 ((uint32_t)0x00080000) /*!< Bit 4 */ |
4493 | #define ADC_JSQR_JSQ4_4 (0x10U << ADC_JSQR_JSQ4_Pos) /*!< 0x00080000 */ |
2754 | 4494 | ||
- | 4495 | #define ADC_JSQR_JL_Pos (20U) |
|
- | 4496 | #define ADC_JSQR_JL_Msk (0x3U << ADC_JSQR_JL_Pos) /*!< 0x00300000 */ |
|
2755 | #define ADC_JSQR_JL ((uint32_t)0x00300000) /*!< JL[1:0] bits (Injected Sequence length) */ |
4497 | #define ADC_JSQR_JL ADC_JSQR_JL_Msk /*!< ADC group injected sequencer scan length */ |
2756 | #define ADC_JSQR_JL_0 ((uint32_t)0x00100000) /*!< Bit 0 */ |
4498 | #define ADC_JSQR_JL_0 (0x1U << ADC_JSQR_JL_Pos) /*!< 0x00100000 */ |
2757 | #define ADC_JSQR_JL_1 ((uint32_t)0x00200000) /*!< Bit 1 */ |
4499 | #define ADC_JSQR_JL_1 (0x2U << ADC_JSQR_JL_Pos) /*!< 0x00200000 */ |
2758 | 4500 | ||
2759 | /******************* Bit definition for ADC_JDR1 register *******************/ |
4501 | /******************* Bit definition for ADC_JDR1 register *******************/ |
2760 | #define ADC_JDR1_JDATA ((uint32_t)0x0000FFFF) /*!< Injected data */ |
4502 | #define ADC_JDR1_JDATA_Pos (0U) |
- | 4503 | #define ADC_JDR1_JDATA_Msk (0xFFFFU << ADC_JDR1_JDATA_Pos) /*!< 0x0000FFFF */ |
|
- | 4504 | #define ADC_JDR1_JDATA ADC_JDR1_JDATA_Msk /*!< ADC group injected sequencer rank 1 conversion data */ |
|
2761 | 4505 | ||
2762 | /******************* Bit definition for ADC_JDR2 register *******************/ |
4506 | /******************* Bit definition for ADC_JDR2 register *******************/ |
2763 | #define ADC_JDR2_JDATA ((uint32_t)0x0000FFFF) /*!< Injected data */ |
4507 | #define ADC_JDR2_JDATA_Pos (0U) |
- | 4508 | #define ADC_JDR2_JDATA_Msk (0xFFFFU << ADC_JDR2_JDATA_Pos) /*!< 0x0000FFFF */ |
|
- | 4509 | #define ADC_JDR2_JDATA ADC_JDR2_JDATA_Msk /*!< ADC group injected sequencer rank 2 conversion data */ |
|
2764 | 4510 | ||
2765 | /******************* Bit definition for ADC_JDR3 register *******************/ |
4511 | /******************* Bit definition for ADC_JDR3 register *******************/ |
2766 | #define ADC_JDR3_JDATA ((uint32_t)0x0000FFFF) /*!< Injected data */ |
4512 | #define ADC_JDR3_JDATA_Pos (0U) |
- | 4513 | #define ADC_JDR3_JDATA_Msk (0xFFFFU << ADC_JDR3_JDATA_Pos) /*!< 0x0000FFFF */ |
|
- | 4514 | #define ADC_JDR3_JDATA ADC_JDR3_JDATA_Msk /*!< ADC group injected sequencer rank 3 conversion data */ |
|
2767 | 4515 | ||
2768 | /******************* Bit definition for ADC_JDR4 register *******************/ |
4516 | /******************* Bit definition for ADC_JDR4 register *******************/ |
2769 | #define ADC_JDR4_JDATA ((uint32_t)0x0000FFFF) /*!< Injected data */ |
4517 | #define ADC_JDR4_JDATA_Pos (0U) |
- | 4518 | #define ADC_JDR4_JDATA_Msk (0xFFFFU << ADC_JDR4_JDATA_Pos) /*!< 0x0000FFFF */ |
|
- | 4519 | #define ADC_JDR4_JDATA ADC_JDR4_JDATA_Msk /*!< ADC group injected sequencer rank 4 conversion data */ |
|
2770 | 4520 | ||
2771 | /******************** Bit definition for ADC_DR register ********************/ |
4521 | /******************** Bit definition for ADC_DR register ********************/ |
- | 4522 | #define ADC_DR_DATA_Pos (0U) |
|
- | 4523 | #define ADC_DR_DATA_Msk (0xFFFFU << ADC_DR_DATA_Pos) /*!< 0x0000FFFF */ |
|
2772 | #define ADC_DR_DATA ((uint32_t)0x0000FFFF) /*!< Regular data */ |
4524 | #define ADC_DR_DATA ADC_DR_DATA_Msk /*!< ADC group regular conversion data */ |
2773 | /******************************************************************************/ |
4525 | /******************************************************************************/ |
2774 | /* */ |
4526 | /* */ |
2775 | /* Digital to Analog Converter */ |
4527 | /* Digital to Analog Converter */ |
2776 | /* */ |
4528 | /* */ |
2777 | /******************************************************************************/ |
4529 | /******************************************************************************/ |
2778 | 4530 | ||
2779 | /******************** Bit definition for DAC_CR register ********************/ |
4531 | /******************** Bit definition for DAC_CR register ********************/ |
- | 4532 | #define DAC_CR_EN1_Pos (0U) |
|
- | 4533 | #define DAC_CR_EN1_Msk (0x1U << DAC_CR_EN1_Pos) /*!< 0x00000001 */ |
|
2780 | #define DAC_CR_EN1 ((uint32_t)0x00000001) /*!< DAC channel1 enable */ |
4534 | #define DAC_CR_EN1 DAC_CR_EN1_Msk /*!< DAC channel1 enable */ |
- | 4535 | #define DAC_CR_BOFF1_Pos (1U) |
|
- | 4536 | #define DAC_CR_BOFF1_Msk (0x1U << DAC_CR_BOFF1_Pos) /*!< 0x00000002 */ |
|
2781 | #define DAC_CR_BOFF1 ((uint32_t)0x00000002) /*!< DAC channel1 output buffer disable */ |
4537 | #define DAC_CR_BOFF1 DAC_CR_BOFF1_Msk /*!< DAC channel1 output buffer disable */ |
- | 4538 | #define DAC_CR_TEN1_Pos (2U) |
|
- | 4539 | #define DAC_CR_TEN1_Msk (0x1U << DAC_CR_TEN1_Pos) /*!< 0x00000004 */ |
|
2782 | #define DAC_CR_TEN1 ((uint32_t)0x00000004) /*!< DAC channel1 Trigger enable */ |
4540 | #define DAC_CR_TEN1 DAC_CR_TEN1_Msk /*!< DAC channel1 Trigger enable */ |
2783 | 4541 | ||
- | 4542 | #define DAC_CR_TSEL1_Pos (3U) |
|
- | 4543 | #define DAC_CR_TSEL1_Msk (0x7U << DAC_CR_TSEL1_Pos) /*!< 0x00000038 */ |
|
2784 | #define DAC_CR_TSEL1 ((uint32_t)0x00000038) /*!< TSEL1[2:0] (DAC channel1 Trigger selection) */ |
4544 | #define DAC_CR_TSEL1 DAC_CR_TSEL1_Msk /*!< TSEL1[2:0] (DAC channel1 Trigger selection) */ |
2785 | #define DAC_CR_TSEL1_0 ((uint32_t)0x00000008) /*!< Bit 0 */ |
4545 | #define DAC_CR_TSEL1_0 (0x1U << DAC_CR_TSEL1_Pos) /*!< 0x00000008 */ |
2786 | #define DAC_CR_TSEL1_1 ((uint32_t)0x00000010) /*!< Bit 1 */ |
4546 | #define DAC_CR_TSEL1_1 (0x2U << DAC_CR_TSEL1_Pos) /*!< 0x00000010 */ |
2787 | #define DAC_CR_TSEL1_2 ((uint32_t)0x00000020) /*!< Bit 2 */ |
4547 | #define DAC_CR_TSEL1_2 (0x4U << DAC_CR_TSEL1_Pos) /*!< 0x00000020 */ |
2788 | 4548 | ||
- | 4549 | #define DAC_CR_WAVE1_Pos (6U) |
|
- | 4550 | #define DAC_CR_WAVE1_Msk (0x3U << DAC_CR_WAVE1_Pos) /*!< 0x000000C0 */ |
|
2789 | #define DAC_CR_WAVE1 ((uint32_t)0x000000C0) /*!< WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */ |
4551 | #define DAC_CR_WAVE1 DAC_CR_WAVE1_Msk /*!< WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */ |
2790 | #define DAC_CR_WAVE1_0 ((uint32_t)0x00000040) /*!< Bit 0 */ |
4552 | #define DAC_CR_WAVE1_0 (0x1U << DAC_CR_WAVE1_Pos) /*!< 0x00000040 */ |
2791 | #define DAC_CR_WAVE1_1 ((uint32_t)0x00000080) /*!< Bit 1 */ |
4553 | #define DAC_CR_WAVE1_1 (0x2U << DAC_CR_WAVE1_Pos) /*!< 0x00000080 */ |
2792 | 4554 | ||
- | 4555 | #define DAC_CR_MAMP1_Pos (8U) |
|
- | 4556 | #define DAC_CR_MAMP1_Msk (0xFU << DAC_CR_MAMP1_Pos) /*!< 0x00000F00 */ |
|
2793 | #define DAC_CR_MAMP1 ((uint32_t)0x00000F00) /*!< MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */ |
4557 | #define DAC_CR_MAMP1 DAC_CR_MAMP1_Msk /*!< MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */ |
2794 | #define DAC_CR_MAMP1_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
4558 | #define DAC_CR_MAMP1_0 (0x1U << DAC_CR_MAMP1_Pos) /*!< 0x00000100 */ |
2795 | #define DAC_CR_MAMP1_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
4559 | #define DAC_CR_MAMP1_1 (0x2U << DAC_CR_MAMP1_Pos) /*!< 0x00000200 */ |
2796 | #define DAC_CR_MAMP1_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
4560 | #define DAC_CR_MAMP1_2 (0x4U << DAC_CR_MAMP1_Pos) /*!< 0x00000400 */ |
2797 | #define DAC_CR_MAMP1_3 ((uint32_t)0x00000800) /*!< Bit 3 */ |
4561 | #define DAC_CR_MAMP1_3 (0x8U << DAC_CR_MAMP1_Pos) /*!< 0x00000800 */ |
2798 | 4562 | ||
- | 4563 | #define DAC_CR_DMAEN1_Pos (12U) |
|
- | 4564 | #define DAC_CR_DMAEN1_Msk (0x1U << DAC_CR_DMAEN1_Pos) /*!< 0x00001000 */ |
|
2799 | #define DAC_CR_DMAEN1 ((uint32_t)0x00001000) /*!< DAC channel1 DMA enable */ |
4565 | #define DAC_CR_DMAEN1 DAC_CR_DMAEN1_Msk /*!< DAC channel1 DMA enable */ |
- | 4566 | #define DAC_CR_EN2_Pos (16U) |
|
- | 4567 | #define DAC_CR_EN2_Msk (0x1U << DAC_CR_EN2_Pos) /*!< 0x00010000 */ |
|
2800 | #define DAC_CR_EN2 ((uint32_t)0x00010000) /*!< DAC channel2 enable */ |
4568 | #define DAC_CR_EN2 DAC_CR_EN2_Msk /*!< DAC channel2 enable */ |
- | 4569 | #define DAC_CR_BOFF2_Pos (17U) |
|
- | 4570 | #define DAC_CR_BOFF2_Msk (0x1U << DAC_CR_BOFF2_Pos) /*!< 0x00020000 */ |
|
2801 | #define DAC_CR_BOFF2 ((uint32_t)0x00020000) /*!< DAC channel2 output buffer disable */ |
4571 | #define DAC_CR_BOFF2 DAC_CR_BOFF2_Msk /*!< DAC channel2 output buffer disable */ |
- | 4572 | #define DAC_CR_TEN2_Pos (18U) |
|
- | 4573 | #define DAC_CR_TEN2_Msk (0x1U << DAC_CR_TEN2_Pos) /*!< 0x00040000 */ |
|
2802 | #define DAC_CR_TEN2 ((uint32_t)0x00040000) /*!< DAC channel2 Trigger enable */ |
4574 | #define DAC_CR_TEN2 DAC_CR_TEN2_Msk /*!< DAC channel2 Trigger enable */ |
2803 | 4575 | ||
- | 4576 | #define DAC_CR_TSEL2_Pos (19U) |
|
- | 4577 | #define DAC_CR_TSEL2_Msk (0x7U << DAC_CR_TSEL2_Pos) /*!< 0x00380000 */ |
|
2804 | #define DAC_CR_TSEL2 ((uint32_t)0x00380000) /*!< TSEL2[2:0] (DAC channel2 Trigger selection) */ |
4578 | #define DAC_CR_TSEL2 DAC_CR_TSEL2_Msk /*!< TSEL2[2:0] (DAC channel2 Trigger selection) */ |
2805 | #define DAC_CR_TSEL2_0 ((uint32_t)0x00080000) /*!< Bit 0 */ |
4579 | #define DAC_CR_TSEL2_0 (0x1U << DAC_CR_TSEL2_Pos) /*!< 0x00080000 */ |
2806 | #define DAC_CR_TSEL2_1 ((uint32_t)0x00100000) /*!< Bit 1 */ |
4580 | #define DAC_CR_TSEL2_1 (0x2U << DAC_CR_TSEL2_Pos) /*!< 0x00100000 */ |
2807 | #define DAC_CR_TSEL2_2 ((uint32_t)0x00200000) /*!< Bit 2 */ |
4581 | #define DAC_CR_TSEL2_2 (0x4U << DAC_CR_TSEL2_Pos) /*!< 0x00200000 */ |
2808 | 4582 | ||
- | 4583 | #define DAC_CR_WAVE2_Pos (22U) |
|
- | 4584 | #define DAC_CR_WAVE2_Msk (0x3U << DAC_CR_WAVE2_Pos) /*!< 0x00C00000 */ |
|
2809 | #define DAC_CR_WAVE2 ((uint32_t)0x00C00000) /*!< WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */ |
4585 | #define DAC_CR_WAVE2 DAC_CR_WAVE2_Msk /*!< WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */ |
2810 | #define DAC_CR_WAVE2_0 ((uint32_t)0x00400000) /*!< Bit 0 */ |
4586 | #define DAC_CR_WAVE2_0 (0x1U << DAC_CR_WAVE2_Pos) /*!< 0x00400000 */ |
2811 | #define DAC_CR_WAVE2_1 ((uint32_t)0x00800000) /*!< Bit 1 */ |
4587 | #define DAC_CR_WAVE2_1 (0x2U << DAC_CR_WAVE2_Pos) /*!< 0x00800000 */ |
2812 | 4588 | ||
- | 4589 | #define DAC_CR_MAMP2_Pos (24U) |
|
- | 4590 | #define DAC_CR_MAMP2_Msk (0xFU << DAC_CR_MAMP2_Pos) /*!< 0x0F000000 */ |
|
2813 | #define DAC_CR_MAMP2 ((uint32_t)0x0F000000) /*!< MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */ |
4591 | #define DAC_CR_MAMP2 DAC_CR_MAMP2_Msk /*!< MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */ |
2814 | #define DAC_CR_MAMP2_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
4592 | #define DAC_CR_MAMP2_0 (0x1U << DAC_CR_MAMP2_Pos) /*!< 0x01000000 */ |
2815 | #define DAC_CR_MAMP2_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
4593 | #define DAC_CR_MAMP2_1 (0x2U << DAC_CR_MAMP2_Pos) /*!< 0x02000000 */ |
2816 | #define DAC_CR_MAMP2_2 ((uint32_t)0x04000000) /*!< Bit 2 */ |
4594 | #define DAC_CR_MAMP2_2 (0x4U << DAC_CR_MAMP2_Pos) /*!< 0x04000000 */ |
2817 | #define DAC_CR_MAMP2_3 ((uint32_t)0x08000000) /*!< Bit 3 */ |
4595 | #define DAC_CR_MAMP2_3 (0x8U << DAC_CR_MAMP2_Pos) /*!< 0x08000000 */ |
2818 | 4596 | ||
- | 4597 | #define DAC_CR_DMAEN2_Pos (28U) |
|
- | 4598 | #define DAC_CR_DMAEN2_Msk (0x1U << DAC_CR_DMAEN2_Pos) /*!< 0x10000000 */ |
|
2819 | #define DAC_CR_DMAEN2 ((uint32_t)0x10000000) /*!< DAC channel2 DMA enabled */ |
4599 | #define DAC_CR_DMAEN2 DAC_CR_DMAEN2_Msk /*!< DAC channel2 DMA enabled */ |
2820 | 4600 | ||
2821 | 4601 | ||
2822 | /***************** Bit definition for DAC_SWTRIGR register ******************/ |
4602 | /***************** Bit definition for DAC_SWTRIGR register ******************/ |
- | 4603 | #define DAC_SWTRIGR_SWTRIG1_Pos (0U) |
|
- | 4604 | #define DAC_SWTRIGR_SWTRIG1_Msk (0x1U << DAC_SWTRIGR_SWTRIG1_Pos) /*!< 0x00000001 */ |
|
2823 | #define DAC_SWTRIGR_SWTRIG1 ((uint32_t)0x00000001) /*!< DAC channel1 software trigger */ |
4605 | #define DAC_SWTRIGR_SWTRIG1 DAC_SWTRIGR_SWTRIG1_Msk /*!< DAC channel1 software trigger */ |
- | 4606 | #define DAC_SWTRIGR_SWTRIG2_Pos (1U) |
|
- | 4607 | #define DAC_SWTRIGR_SWTRIG2_Msk (0x1U << DAC_SWTRIGR_SWTRIG2_Pos) /*!< 0x00000002 */ |
|
2824 | #define DAC_SWTRIGR_SWTRIG2 ((uint32_t)0x00000002) /*!< DAC channel2 software trigger */ |
4608 | #define DAC_SWTRIGR_SWTRIG2 DAC_SWTRIGR_SWTRIG2_Msk /*!< DAC channel2 software trigger */ |
2825 | 4609 | ||
2826 | /***************** Bit definition for DAC_DHR12R1 register ******************/ |
4610 | /***************** Bit definition for DAC_DHR12R1 register ******************/ |
- | 4611 | #define DAC_DHR12R1_DACC1DHR_Pos (0U) |
|
- | 4612 | #define DAC_DHR12R1_DACC1DHR_Msk (0xFFFU << DAC_DHR12R1_DACC1DHR_Pos) /*!< 0x00000FFF */ |
|
2827 | #define DAC_DHR12R1_DACC1DHR ((uint32_t)0x00000FFF) /*!< DAC channel1 12-bit Right aligned data */ |
4613 | #define DAC_DHR12R1_DACC1DHR DAC_DHR12R1_DACC1DHR_Msk /*!< DAC channel1 12-bit Right aligned data */ |
2828 | 4614 | ||
2829 | /***************** Bit definition for DAC_DHR12L1 register ******************/ |
4615 | /***************** Bit definition for DAC_DHR12L1 register ******************/ |
- | 4616 | #define DAC_DHR12L1_DACC1DHR_Pos (4U) |
|
- | 4617 | #define DAC_DHR12L1_DACC1DHR_Msk (0xFFFU << DAC_DHR12L1_DACC1DHR_Pos) /*!< 0x0000FFF0 */ |
|
2830 | #define DAC_DHR12L1_DACC1DHR ((uint32_t)0x0000FFF0) /*!< DAC channel1 12-bit Left aligned data */ |
4618 | #define DAC_DHR12L1_DACC1DHR DAC_DHR12L1_DACC1DHR_Msk /*!< DAC channel1 12-bit Left aligned data */ |
2831 | 4619 | ||
2832 | /****************** Bit definition for DAC_DHR8R1 register ******************/ |
4620 | /****************** Bit definition for DAC_DHR8R1 register ******************/ |
- | 4621 | #define DAC_DHR8R1_DACC1DHR_Pos (0U) |
|
- | 4622 | #define DAC_DHR8R1_DACC1DHR_Msk (0xFFU << DAC_DHR8R1_DACC1DHR_Pos) /*!< 0x000000FF */ |
|
2833 | #define DAC_DHR8R1_DACC1DHR ((uint32_t)0x000000FF) /*!< DAC channel1 8-bit Right aligned data */ |
4623 | #define DAC_DHR8R1_DACC1DHR DAC_DHR8R1_DACC1DHR_Msk /*!< DAC channel1 8-bit Right aligned data */ |
2834 | 4624 | ||
2835 | /***************** Bit definition for DAC_DHR12R2 register ******************/ |
4625 | /***************** Bit definition for DAC_DHR12R2 register ******************/ |
- | 4626 | #define DAC_DHR12R2_DACC2DHR_Pos (0U) |
|
- | 4627 | #define DAC_DHR12R2_DACC2DHR_Msk (0xFFFU << DAC_DHR12R2_DACC2DHR_Pos) /*!< 0x00000FFF */ |
|
2836 | #define DAC_DHR12R2_DACC2DHR ((uint32_t)0x00000FFF) /*!< DAC channel2 12-bit Right aligned data */ |
4628 | #define DAC_DHR12R2_DACC2DHR DAC_DHR12R2_DACC2DHR_Msk /*!< DAC channel2 12-bit Right aligned data */ |
2837 | 4629 | ||
2838 | /***************** Bit definition for DAC_DHR12L2 register ******************/ |
4630 | /***************** Bit definition for DAC_DHR12L2 register ******************/ |
- | 4631 | #define DAC_DHR12L2_DACC2DHR_Pos (4U) |
|
- | 4632 | #define DAC_DHR12L2_DACC2DHR_Msk (0xFFFU << DAC_DHR12L2_DACC2DHR_Pos) /*!< 0x0000FFF0 */ |
|
2839 | #define DAC_DHR12L2_DACC2DHR ((uint32_t)0x0000FFF0) /*!< DAC channel2 12-bit Left aligned data */ |
4633 | #define DAC_DHR12L2_DACC2DHR DAC_DHR12L2_DACC2DHR_Msk /*!< DAC channel2 12-bit Left aligned data */ |
2840 | 4634 | ||
2841 | /****************** Bit definition for DAC_DHR8R2 register ******************/ |
4635 | /****************** Bit definition for DAC_DHR8R2 register ******************/ |
- | 4636 | #define DAC_DHR8R2_DACC2DHR_Pos (0U) |
|
- | 4637 | #define DAC_DHR8R2_DACC2DHR_Msk (0xFFU << DAC_DHR8R2_DACC2DHR_Pos) /*!< 0x000000FF */ |
|
2842 | #define DAC_DHR8R2_DACC2DHR ((uint32_t)0x000000FF) /*!< DAC channel2 8-bit Right aligned data */ |
4638 | #define DAC_DHR8R2_DACC2DHR DAC_DHR8R2_DACC2DHR_Msk /*!< DAC channel2 8-bit Right aligned data */ |
2843 | 4639 | ||
2844 | /***************** Bit definition for DAC_DHR12RD register ******************/ |
4640 | /***************** Bit definition for DAC_DHR12RD register ******************/ |
- | 4641 | #define DAC_DHR12RD_DACC1DHR_Pos (0U) |
|
- | 4642 | #define DAC_DHR12RD_DACC1DHR_Msk (0xFFFU << DAC_DHR12RD_DACC1DHR_Pos) /*!< 0x00000FFF */ |
|
2845 | #define DAC_DHR12RD_DACC1DHR ((uint32_t)0x00000FFF) /*!< DAC channel1 12-bit Right aligned data */ |
4643 | #define DAC_DHR12RD_DACC1DHR DAC_DHR12RD_DACC1DHR_Msk /*!< DAC channel1 12-bit Right aligned data */ |
- | 4644 | #define DAC_DHR12RD_DACC2DHR_Pos (16U) |
|
- | 4645 | #define DAC_DHR12RD_DACC2DHR_Msk (0xFFFU << DAC_DHR12RD_DACC2DHR_Pos) /*!< 0x0FFF0000 */ |
|
2846 | #define DAC_DHR12RD_DACC2DHR ((uint32_t)0x0FFF0000) /*!< DAC channel2 12-bit Right aligned data */ |
4646 | #define DAC_DHR12RD_DACC2DHR DAC_DHR12RD_DACC2DHR_Msk /*!< DAC channel2 12-bit Right aligned data */ |
2847 | 4647 | ||
2848 | /***************** Bit definition for DAC_DHR12LD register ******************/ |
4648 | /***************** Bit definition for DAC_DHR12LD register ******************/ |
- | 4649 | #define DAC_DHR12LD_DACC1DHR_Pos (4U) |
|
- | 4650 | #define DAC_DHR12LD_DACC1DHR_Msk (0xFFFU << DAC_DHR12LD_DACC1DHR_Pos) /*!< 0x0000FFF0 */ |
|
2849 | #define DAC_DHR12LD_DACC1DHR ((uint32_t)0x0000FFF0) /*!< DAC channel1 12-bit Left aligned data */ |
4651 | #define DAC_DHR12LD_DACC1DHR DAC_DHR12LD_DACC1DHR_Msk /*!< DAC channel1 12-bit Left aligned data */ |
- | 4652 | #define DAC_DHR12LD_DACC2DHR_Pos (20U) |
|
- | 4653 | #define DAC_DHR12LD_DACC2DHR_Msk (0xFFFU << DAC_DHR12LD_DACC2DHR_Pos) /*!< 0xFFF00000 */ |
|
2850 | #define DAC_DHR12LD_DACC2DHR ((uint32_t)0xFFF00000) /*!< DAC channel2 12-bit Left aligned data */ |
4654 | #define DAC_DHR12LD_DACC2DHR DAC_DHR12LD_DACC2DHR_Msk /*!< DAC channel2 12-bit Left aligned data */ |
2851 | 4655 | ||
2852 | /****************** Bit definition for DAC_DHR8RD register ******************/ |
4656 | /****************** Bit definition for DAC_DHR8RD register ******************/ |
- | 4657 | #define DAC_DHR8RD_DACC1DHR_Pos (0U) |
|
- | 4658 | #define DAC_DHR8RD_DACC1DHR_Msk (0xFFU << DAC_DHR8RD_DACC1DHR_Pos) /*!< 0x000000FF */ |
|
2853 | #define DAC_DHR8RD_DACC1DHR ((uint32_t)0x000000FF) /*!< DAC channel1 8-bit Right aligned data */ |
4659 | #define DAC_DHR8RD_DACC1DHR DAC_DHR8RD_DACC1DHR_Msk /*!< DAC channel1 8-bit Right aligned data */ |
- | 4660 | #define DAC_DHR8RD_DACC2DHR_Pos (8U) |
|
- | 4661 | #define DAC_DHR8RD_DACC2DHR_Msk (0xFFU << DAC_DHR8RD_DACC2DHR_Pos) /*!< 0x0000FF00 */ |
|
2854 | #define DAC_DHR8RD_DACC2DHR ((uint32_t)0x0000FF00) /*!< DAC channel2 8-bit Right aligned data */ |
4662 | #define DAC_DHR8RD_DACC2DHR DAC_DHR8RD_DACC2DHR_Msk /*!< DAC channel2 8-bit Right aligned data */ |
2855 | 4663 | ||
2856 | /******************* Bit definition for DAC_DOR1 register *******************/ |
4664 | /******************* Bit definition for DAC_DOR1 register *******************/ |
- | 4665 | #define DAC_DOR1_DACC1DOR_Pos (0U) |
|
- | 4666 | #define DAC_DOR1_DACC1DOR_Msk (0xFFFU << DAC_DOR1_DACC1DOR_Pos) /*!< 0x00000FFF */ |
|
2857 | #define DAC_DOR1_DACC1DOR ((uint32_t)0x00000FFF) /*!< DAC channel1 data output */ |
4667 | #define DAC_DOR1_DACC1DOR DAC_DOR1_DACC1DOR_Msk /*!< DAC channel1 data output */ |
2858 | 4668 | ||
2859 | /******************* Bit definition for DAC_DOR2 register *******************/ |
4669 | /******************* Bit definition for DAC_DOR2 register *******************/ |
- | 4670 | #define DAC_DOR2_DACC2DOR_Pos (0U) |
|
- | 4671 | #define DAC_DOR2_DACC2DOR_Msk (0xFFFU << DAC_DOR2_DACC2DOR_Pos) /*!< 0x00000FFF */ |
|
2860 | #define DAC_DOR2_DACC2DOR ((uint32_t)0x00000FFF) /*!< DAC channel2 data output */ |
4672 | #define DAC_DOR2_DACC2DOR DAC_DOR2_DACC2DOR_Msk /*!< DAC channel2 data output */ |
2861 | 4673 | ||
2862 | 4674 | ||
2863 | 4675 | ||
2864 | /*****************************************************************************/ |
4676 | /*****************************************************************************/ |
2865 | /* */ |
4677 | /* */ |
2866 | /* Timers (TIM) */ |
4678 | /* Timers (TIM) */ |
2867 | /* */ |
4679 | /* */ |
2868 | /*****************************************************************************/ |
4680 | /*****************************************************************************/ |
2869 | /******************* Bit definition for TIM_CR1 register *******************/ |
4681 | /******************* Bit definition for TIM_CR1 register *******************/ |
- | 4682 | #define TIM_CR1_CEN_Pos (0U) |
|
- | 4683 | #define TIM_CR1_CEN_Msk (0x1U << TIM_CR1_CEN_Pos) /*!< 0x00000001 */ |
|
2870 | #define TIM_CR1_CEN ((uint32_t)0x00000001) /*!<Counter enable */ |
4684 | #define TIM_CR1_CEN TIM_CR1_CEN_Msk /*!<Counter enable */ |
- | 4685 | #define TIM_CR1_UDIS_Pos (1U) |
|
- | 4686 | #define TIM_CR1_UDIS_Msk (0x1U << TIM_CR1_UDIS_Pos) /*!< 0x00000002 */ |
|
2871 | #define TIM_CR1_UDIS ((uint32_t)0x00000002) /*!<Update disable */ |
4687 | #define TIM_CR1_UDIS TIM_CR1_UDIS_Msk /*!<Update disable */ |
- | 4688 | #define TIM_CR1_URS_Pos (2U) |
|
- | 4689 | #define TIM_CR1_URS_Msk (0x1U << TIM_CR1_URS_Pos) /*!< 0x00000004 */ |
|
2872 | #define TIM_CR1_URS ((uint32_t)0x00000004) /*!<Update request source */ |
4690 | #define TIM_CR1_URS TIM_CR1_URS_Msk /*!<Update request source */ |
- | 4691 | #define TIM_CR1_OPM_Pos (3U) |
|
- | 4692 | #define TIM_CR1_OPM_Msk (0x1U << TIM_CR1_OPM_Pos) /*!< 0x00000008 */ |
|
2873 | #define TIM_CR1_OPM ((uint32_t)0x00000008) /*!<One pulse mode */ |
4693 | #define TIM_CR1_OPM TIM_CR1_OPM_Msk /*!<One pulse mode */ |
- | 4694 | #define TIM_CR1_DIR_Pos (4U) |
|
- | 4695 | #define TIM_CR1_DIR_Msk (0x1U << TIM_CR1_DIR_Pos) /*!< 0x00000010 */ |
|
2874 | #define TIM_CR1_DIR ((uint32_t)0x00000010) /*!<Direction */ |
4696 | #define TIM_CR1_DIR TIM_CR1_DIR_Msk /*!<Direction */ |
2875 | 4697 | ||
- | 4698 | #define TIM_CR1_CMS_Pos (5U) |
|
- | 4699 | #define TIM_CR1_CMS_Msk (0x3U << TIM_CR1_CMS_Pos) /*!< 0x00000060 */ |
|
2876 | #define TIM_CR1_CMS ((uint32_t)0x00000060) /*!<CMS[1:0] bits (Center-aligned mode selection) */ |
4700 | #define TIM_CR1_CMS TIM_CR1_CMS_Msk /*!<CMS[1:0] bits (Center-aligned mode selection) */ |
2877 | #define TIM_CR1_CMS_0 ((uint32_t)0x00000020) /*!<Bit 0 */ |
4701 | #define TIM_CR1_CMS_0 (0x1U << TIM_CR1_CMS_Pos) /*!< 0x00000020 */ |
2878 | #define TIM_CR1_CMS_1 ((uint32_t)0x00000040) /*!<Bit 1 */ |
4702 | #define TIM_CR1_CMS_1 (0x2U << TIM_CR1_CMS_Pos) /*!< 0x00000040 */ |
2879 | 4703 | ||
- | 4704 | #define TIM_CR1_ARPE_Pos (7U) |
|
- | 4705 | #define TIM_CR1_ARPE_Msk (0x1U << TIM_CR1_ARPE_Pos) /*!< 0x00000080 */ |
|
2880 | #define TIM_CR1_ARPE ((uint32_t)0x00000080) /*!<Auto-reload preload enable */ |
4706 | #define TIM_CR1_ARPE TIM_CR1_ARPE_Msk /*!<Auto-reload preload enable */ |
2881 | 4707 | ||
- | 4708 | #define TIM_CR1_CKD_Pos (8U) |
|
- | 4709 | #define TIM_CR1_CKD_Msk (0x3U << TIM_CR1_CKD_Pos) /*!< 0x00000300 */ |
|
2882 | #define TIM_CR1_CKD ((uint32_t)0x00000300) /*!<CKD[1:0] bits (clock division) */ |
4710 | #define TIM_CR1_CKD TIM_CR1_CKD_Msk /*!<CKD[1:0] bits (clock division) */ |
2883 | #define TIM_CR1_CKD_0 ((uint32_t)0x00000100) /*!<Bit 0 */ |
4711 | #define TIM_CR1_CKD_0 (0x1U << TIM_CR1_CKD_Pos) /*!< 0x00000100 */ |
2884 | #define TIM_CR1_CKD_1 ((uint32_t)0x00000200) /*!<Bit 1 */ |
4712 | #define TIM_CR1_CKD_1 (0x2U << TIM_CR1_CKD_Pos) /*!< 0x00000200 */ |
2885 | 4713 | ||
2886 | /******************* Bit definition for TIM_CR2 register *******************/ |
4714 | /******************* Bit definition for TIM_CR2 register *******************/ |
- | 4715 | #define TIM_CR2_CCPC_Pos (0U) |
|
- | 4716 | #define TIM_CR2_CCPC_Msk (0x1U << TIM_CR2_CCPC_Pos) /*!< 0x00000001 */ |
|
2887 | #define TIM_CR2_CCPC ((uint32_t)0x00000001) /*!<Capture/Compare Preloaded Control */ |
4717 | #define TIM_CR2_CCPC TIM_CR2_CCPC_Msk /*!<Capture/Compare Preloaded Control */ |
- | 4718 | #define TIM_CR2_CCUS_Pos (2U) |
|
- | 4719 | #define TIM_CR2_CCUS_Msk (0x1U << TIM_CR2_CCUS_Pos) /*!< 0x00000004 */ |
|
2888 | #define TIM_CR2_CCUS ((uint32_t)0x00000004) /*!<Capture/Compare Control Update Selection */ |
4720 | #define TIM_CR2_CCUS TIM_CR2_CCUS_Msk /*!<Capture/Compare Control Update Selection */ |
- | 4721 | #define TIM_CR2_CCDS_Pos (3U) |
|
- | 4722 | #define TIM_CR2_CCDS_Msk (0x1U << TIM_CR2_CCDS_Pos) /*!< 0x00000008 */ |
|
2889 | #define TIM_CR2_CCDS ((uint32_t)0x00000008) /*!<Capture/Compare DMA Selection */ |
4723 | #define TIM_CR2_CCDS TIM_CR2_CCDS_Msk /*!<Capture/Compare DMA Selection */ |
2890 | 4724 | ||
- | 4725 | #define TIM_CR2_MMS_Pos (4U) |
|
- | 4726 | #define TIM_CR2_MMS_Msk (0x7U << TIM_CR2_MMS_Pos) /*!< 0x00000070 */ |
|
2891 | #define TIM_CR2_MMS ((uint32_t)0x00000070) /*!<MMS[2:0] bits (Master Mode Selection) */ |
4727 | #define TIM_CR2_MMS TIM_CR2_MMS_Msk /*!<MMS[2:0] bits (Master Mode Selection) */ |
2892 | #define TIM_CR2_MMS_0 ((uint32_t)0x00000010) /*!<Bit 0 */ |
4728 | #define TIM_CR2_MMS_0 (0x1U << TIM_CR2_MMS_Pos) /*!< 0x00000010 */ |
2893 | #define TIM_CR2_MMS_1 ((uint32_t)0x00000020) /*!<Bit 1 */ |
4729 | #define TIM_CR2_MMS_1 (0x2U << TIM_CR2_MMS_Pos) /*!< 0x00000020 */ |
2894 | #define TIM_CR2_MMS_2 ((uint32_t)0x00000040) /*!<Bit 2 */ |
4730 | #define TIM_CR2_MMS_2 (0x4U << TIM_CR2_MMS_Pos) /*!< 0x00000040 */ |
2895 | 4731 | ||
- | 4732 | #define TIM_CR2_TI1S_Pos (7U) |
|
- | 4733 | #define TIM_CR2_TI1S_Msk (0x1U << TIM_CR2_TI1S_Pos) /*!< 0x00000080 */ |
|
2896 | #define TIM_CR2_TI1S ((uint32_t)0x00000080) /*!<TI1 Selection */ |
4734 | #define TIM_CR2_TI1S TIM_CR2_TI1S_Msk /*!<TI1 Selection */ |
- | 4735 | #define TIM_CR2_OIS1_Pos (8U) |
|
- | 4736 | #define TIM_CR2_OIS1_Msk (0x1U << TIM_CR2_OIS1_Pos) /*!< 0x00000100 */ |
|
2897 | #define TIM_CR2_OIS1 ((uint32_t)0x00000100) /*!<Output Idle state 1 (OC1 output) */ |
4737 | #define TIM_CR2_OIS1 TIM_CR2_OIS1_Msk /*!<Output Idle state 1 (OC1 output) */ |
- | 4738 | #define TIM_CR2_OIS1N_Pos (9U) |
|
- | 4739 | #define TIM_CR2_OIS1N_Msk (0x1U << TIM_CR2_OIS1N_Pos) /*!< 0x00000200 */ |
|
2898 | #define TIM_CR2_OIS1N ((uint32_t)0x00000200) /*!<Output Idle state 1 (OC1N output) */ |
4740 | #define TIM_CR2_OIS1N TIM_CR2_OIS1N_Msk /*!<Output Idle state 1 (OC1N output) */ |
- | 4741 | #define TIM_CR2_OIS2_Pos (10U) |
|
- | 4742 | #define TIM_CR2_OIS2_Msk (0x1U << TIM_CR2_OIS2_Pos) /*!< 0x00000400 */ |
|
2899 | #define TIM_CR2_OIS2 ((uint32_t)0x00000400) /*!<Output Idle state 2 (OC2 output) */ |
4743 | #define TIM_CR2_OIS2 TIM_CR2_OIS2_Msk /*!<Output Idle state 2 (OC2 output) */ |
- | 4744 | #define TIM_CR2_OIS2N_Pos (11U) |
|
- | 4745 | #define TIM_CR2_OIS2N_Msk (0x1U << TIM_CR2_OIS2N_Pos) /*!< 0x00000800 */ |
|
2900 | #define TIM_CR2_OIS2N ((uint32_t)0x00000800) /*!<Output Idle state 2 (OC2N output) */ |
4746 | #define TIM_CR2_OIS2N TIM_CR2_OIS2N_Msk /*!<Output Idle state 2 (OC2N output) */ |
- | 4747 | #define TIM_CR2_OIS3_Pos (12U) |
|
- | 4748 | #define TIM_CR2_OIS3_Msk (0x1U << TIM_CR2_OIS3_Pos) /*!< 0x00001000 */ |
|
2901 | #define TIM_CR2_OIS3 ((uint32_t)0x00001000) /*!<Output Idle state 3 (OC3 output) */ |
4749 | #define TIM_CR2_OIS3 TIM_CR2_OIS3_Msk /*!<Output Idle state 3 (OC3 output) */ |
- | 4750 | #define TIM_CR2_OIS3N_Pos (13U) |
|
- | 4751 | #define TIM_CR2_OIS3N_Msk (0x1U << TIM_CR2_OIS3N_Pos) /*!< 0x00002000 */ |
|
2902 | #define TIM_CR2_OIS3N ((uint32_t)0x00002000) /*!<Output Idle state 3 (OC3N output) */ |
4752 | #define TIM_CR2_OIS3N TIM_CR2_OIS3N_Msk /*!<Output Idle state 3 (OC3N output) */ |
- | 4753 | #define TIM_CR2_OIS4_Pos (14U) |
|
- | 4754 | #define TIM_CR2_OIS4_Msk (0x1U << TIM_CR2_OIS4_Pos) /*!< 0x00004000 */ |
|
2903 | #define TIM_CR2_OIS4 ((uint32_t)0x00004000) /*!<Output Idle state 4 (OC4 output) */ |
4755 | #define TIM_CR2_OIS4 TIM_CR2_OIS4_Msk /*!<Output Idle state 4 (OC4 output) */ |
2904 | 4756 | ||
2905 | /******************* Bit definition for TIM_SMCR register ******************/ |
4757 | /******************* Bit definition for TIM_SMCR register ******************/ |
- | 4758 | #define TIM_SMCR_SMS_Pos (0U) |
|
- | 4759 | #define TIM_SMCR_SMS_Msk (0x7U << TIM_SMCR_SMS_Pos) /*!< 0x00000007 */ |
|
2906 | #define TIM_SMCR_SMS ((uint32_t)0x00000007) /*!<SMS[2:0] bits (Slave mode selection) */ |
4760 | #define TIM_SMCR_SMS TIM_SMCR_SMS_Msk /*!<SMS[2:0] bits (Slave mode selection) */ |
2907 | #define TIM_SMCR_SMS_0 ((uint32_t)0x00000001) /*!<Bit 0 */ |
4761 | #define TIM_SMCR_SMS_0 (0x1U << TIM_SMCR_SMS_Pos) /*!< 0x00000001 */ |
2908 | #define TIM_SMCR_SMS_1 ((uint32_t)0x00000002) /*!<Bit 1 */ |
4762 | #define TIM_SMCR_SMS_1 (0x2U << TIM_SMCR_SMS_Pos) /*!< 0x00000002 */ |
2909 | #define TIM_SMCR_SMS_2 ((uint32_t)0x00000004) /*!<Bit 2 */ |
4763 | #define TIM_SMCR_SMS_2 (0x4U << TIM_SMCR_SMS_Pos) /*!< 0x00000004 */ |
2910 | 4764 | ||
- | 4765 | #define TIM_SMCR_OCCS_Pos (3U) |
|
- | 4766 | #define TIM_SMCR_OCCS_Msk (0x1U << TIM_SMCR_OCCS_Pos) /*!< 0x00000008 */ |
|
2911 | #define TIM_SMCR_OCCS ((uint32_t)0x00000008) /*!< OCREF clear selection */ |
4767 | #define TIM_SMCR_OCCS TIM_SMCR_OCCS_Msk /*!< OCREF clear selection */ |
2912 | 4768 | ||
- | 4769 | #define TIM_SMCR_TS_Pos (4U) |
|
- | 4770 | #define TIM_SMCR_TS_Msk (0x7U << TIM_SMCR_TS_Pos) /*!< 0x00000070 */ |
|
2913 | #define TIM_SMCR_TS ((uint32_t)0x00000070) /*!<TS[2:0] bits (Trigger selection) */ |
4771 | #define TIM_SMCR_TS TIM_SMCR_TS_Msk /*!<TS[2:0] bits (Trigger selection) */ |
2914 | #define TIM_SMCR_TS_0 ((uint32_t)0x00000010) /*!<Bit 0 */ |
4772 | #define TIM_SMCR_TS_0 (0x1U << TIM_SMCR_TS_Pos) /*!< 0x00000010 */ |
2915 | #define TIM_SMCR_TS_1 ((uint32_t)0x00000020) /*!<Bit 1 */ |
4773 | #define TIM_SMCR_TS_1 (0x2U << TIM_SMCR_TS_Pos) /*!< 0x00000020 */ |
2916 | #define TIM_SMCR_TS_2 ((uint32_t)0x00000040) /*!<Bit 2 */ |
4774 | #define TIM_SMCR_TS_2 (0x4U << TIM_SMCR_TS_Pos) /*!< 0x00000040 */ |
2917 | 4775 | ||
- | 4776 | #define TIM_SMCR_MSM_Pos (7U) |
|
- | 4777 | #define TIM_SMCR_MSM_Msk (0x1U << TIM_SMCR_MSM_Pos) /*!< 0x00000080 */ |
|
2918 | #define TIM_SMCR_MSM ((uint32_t)0x00000080) /*!<Master/slave mode */ |
4778 | #define TIM_SMCR_MSM TIM_SMCR_MSM_Msk /*!<Master/slave mode */ |
2919 | 4779 | ||
- | 4780 | #define TIM_SMCR_ETF_Pos (8U) |
|
- | 4781 | #define TIM_SMCR_ETF_Msk (0xFU << TIM_SMCR_ETF_Pos) /*!< 0x00000F00 */ |
|
2920 | #define TIM_SMCR_ETF ((uint32_t)0x00000F00) /*!<ETF[3:0] bits (External trigger filter) */ |
4782 | #define TIM_SMCR_ETF TIM_SMCR_ETF_Msk /*!<ETF[3:0] bits (External trigger filter) */ |
2921 | #define TIM_SMCR_ETF_0 ((uint32_t)0x00000100) /*!<Bit 0 */ |
4783 | #define TIM_SMCR_ETF_0 (0x1U << TIM_SMCR_ETF_Pos) /*!< 0x00000100 */ |
2922 | #define TIM_SMCR_ETF_1 ((uint32_t)0x00000200) /*!<Bit 1 */ |
4784 | #define TIM_SMCR_ETF_1 (0x2U << TIM_SMCR_ETF_Pos) /*!< 0x00000200 */ |
2923 | #define TIM_SMCR_ETF_2 ((uint32_t)0x00000400) /*!<Bit 2 */ |
4785 | #define TIM_SMCR_ETF_2 (0x4U << TIM_SMCR_ETF_Pos) /*!< 0x00000400 */ |
2924 | #define TIM_SMCR_ETF_3 ((uint32_t)0x00000800) /*!<Bit 3 */ |
4786 | #define TIM_SMCR_ETF_3 (0x8U << TIM_SMCR_ETF_Pos) /*!< 0x00000800 */ |
2925 | 4787 | ||
- | 4788 | #define TIM_SMCR_ETPS_Pos (12U) |
|
- | 4789 | #define TIM_SMCR_ETPS_Msk (0x3U << TIM_SMCR_ETPS_Pos) /*!< 0x00003000 */ |
|
2926 | #define TIM_SMCR_ETPS ((uint32_t)0x00003000) /*!<ETPS[1:0] bits (External trigger prescaler) */ |
4790 | #define TIM_SMCR_ETPS TIM_SMCR_ETPS_Msk /*!<ETPS[1:0] bits (External trigger prescaler) */ |
2927 | #define TIM_SMCR_ETPS_0 ((uint32_t)0x00001000) /*!<Bit 0 */ |
4791 | #define TIM_SMCR_ETPS_0 (0x1U << TIM_SMCR_ETPS_Pos) /*!< 0x00001000 */ |
2928 | #define TIM_SMCR_ETPS_1 ((uint32_t)0x00002000) /*!<Bit 1 */ |
4792 | #define TIM_SMCR_ETPS_1 (0x2U << TIM_SMCR_ETPS_Pos) /*!< 0x00002000 */ |
2929 | 4793 | ||
- | 4794 | #define TIM_SMCR_ECE_Pos (14U) |
|
- | 4795 | #define TIM_SMCR_ECE_Msk (0x1U << TIM_SMCR_ECE_Pos) /*!< 0x00004000 */ |
|
2930 | #define TIM_SMCR_ECE ((uint32_t)0x00004000) /*!<External clock enable */ |
4796 | #define TIM_SMCR_ECE TIM_SMCR_ECE_Msk /*!<External clock enable */ |
- | 4797 | #define TIM_SMCR_ETP_Pos (15U) |
|
- | 4798 | #define TIM_SMCR_ETP_Msk (0x1U << TIM_SMCR_ETP_Pos) /*!< 0x00008000 */ |
|
2931 | #define TIM_SMCR_ETP ((uint32_t)0x00008000) /*!<External trigger polarity */ |
4799 | #define TIM_SMCR_ETP TIM_SMCR_ETP_Msk /*!<External trigger polarity */ |
2932 | 4800 | ||
2933 | /******************* Bit definition for TIM_DIER register ******************/ |
4801 | /******************* Bit definition for TIM_DIER register ******************/ |
- | 4802 | #define TIM_DIER_UIE_Pos (0U) |
|
- | 4803 | #define TIM_DIER_UIE_Msk (0x1U << TIM_DIER_UIE_Pos) /*!< 0x00000001 */ |
|
2934 | #define TIM_DIER_UIE ((uint32_t)0x00000001) /*!<Update interrupt enable */ |
4804 | #define TIM_DIER_UIE TIM_DIER_UIE_Msk /*!<Update interrupt enable */ |
- | 4805 | #define TIM_DIER_CC1IE_Pos (1U) |
|
- | 4806 | #define TIM_DIER_CC1IE_Msk (0x1U << TIM_DIER_CC1IE_Pos) /*!< 0x00000002 */ |
|
2935 | #define TIM_DIER_CC1IE ((uint32_t)0x00000002) /*!<Capture/Compare 1 interrupt enable */ |
4807 | #define TIM_DIER_CC1IE TIM_DIER_CC1IE_Msk /*!<Capture/Compare 1 interrupt enable */ |
- | 4808 | #define TIM_DIER_CC2IE_Pos (2U) |
|
- | 4809 | #define TIM_DIER_CC2IE_Msk (0x1U << TIM_DIER_CC2IE_Pos) /*!< 0x00000004 */ |
|
2936 | #define TIM_DIER_CC2IE ((uint32_t)0x00000004) /*!<Capture/Compare 2 interrupt enable */ |
4810 | #define TIM_DIER_CC2IE TIM_DIER_CC2IE_Msk /*!<Capture/Compare 2 interrupt enable */ |
- | 4811 | #define TIM_DIER_CC3IE_Pos (3U) |
|
- | 4812 | #define TIM_DIER_CC3IE_Msk (0x1U << TIM_DIER_CC3IE_Pos) /*!< 0x00000008 */ |
|
2937 | #define TIM_DIER_CC3IE ((uint32_t)0x00000008) /*!<Capture/Compare 3 interrupt enable */ |
4813 | #define TIM_DIER_CC3IE TIM_DIER_CC3IE_Msk /*!<Capture/Compare 3 interrupt enable */ |
- | 4814 | #define TIM_DIER_CC4IE_Pos (4U) |
|
- | 4815 | #define TIM_DIER_CC4IE_Msk (0x1U << TIM_DIER_CC4IE_Pos) /*!< 0x00000010 */ |
|
2938 | #define TIM_DIER_CC4IE ((uint32_t)0x00000010) /*!<Capture/Compare 4 interrupt enable */ |
4816 | #define TIM_DIER_CC4IE TIM_DIER_CC4IE_Msk /*!<Capture/Compare 4 interrupt enable */ |
- | 4817 | #define TIM_DIER_COMIE_Pos (5U) |
|
- | 4818 | #define TIM_DIER_COMIE_Msk (0x1U << TIM_DIER_COMIE_Pos) /*!< 0x00000020 */ |
|
2939 | #define TIM_DIER_COMIE ((uint32_t)0x00000020) /*!<COM interrupt enable */ |
4819 | #define TIM_DIER_COMIE TIM_DIER_COMIE_Msk /*!<COM interrupt enable */ |
- | 4820 | #define TIM_DIER_TIE_Pos (6U) |
|
- | 4821 | #define TIM_DIER_TIE_Msk (0x1U << TIM_DIER_TIE_Pos) /*!< 0x00000040 */ |
|
2940 | #define TIM_DIER_TIE ((uint32_t)0x00000040) /*!<Trigger interrupt enable */ |
4822 | #define TIM_DIER_TIE TIM_DIER_TIE_Msk /*!<Trigger interrupt enable */ |
- | 4823 | #define TIM_DIER_BIE_Pos (7U) |
|
- | 4824 | #define TIM_DIER_BIE_Msk (0x1U << TIM_DIER_BIE_Pos) /*!< 0x00000080 */ |
|
2941 | #define TIM_DIER_BIE ((uint32_t)0x00000080) /*!<Break interrupt enable */ |
4825 | #define TIM_DIER_BIE TIM_DIER_BIE_Msk /*!<Break interrupt enable */ |
- | 4826 | #define TIM_DIER_UDE_Pos (8U) |
|
- | 4827 | #define TIM_DIER_UDE_Msk (0x1U << TIM_DIER_UDE_Pos) /*!< 0x00000100 */ |
|
2942 | #define TIM_DIER_UDE ((uint32_t)0x00000100) /*!<Update DMA request enable */ |
4828 | #define TIM_DIER_UDE TIM_DIER_UDE_Msk /*!<Update DMA request enable */ |
- | 4829 | #define TIM_DIER_CC1DE_Pos (9U) |
|
- | 4830 | #define TIM_DIER_CC1DE_Msk (0x1U << TIM_DIER_CC1DE_Pos) /*!< 0x00000200 */ |
|
2943 | #define TIM_DIER_CC1DE ((uint32_t)0x00000200) /*!<Capture/Compare 1 DMA request enable */ |
4831 | #define TIM_DIER_CC1DE TIM_DIER_CC1DE_Msk /*!<Capture/Compare 1 DMA request enable */ |
- | 4832 | #define TIM_DIER_CC2DE_Pos (10U) |
|
- | 4833 | #define TIM_DIER_CC2DE_Msk (0x1U << TIM_DIER_CC2DE_Pos) /*!< 0x00000400 */ |
|
2944 | #define TIM_DIER_CC2DE ((uint32_t)0x00000400) /*!<Capture/Compare 2 DMA request enable */ |
4834 | #define TIM_DIER_CC2DE TIM_DIER_CC2DE_Msk /*!<Capture/Compare 2 DMA request enable */ |
- | 4835 | #define TIM_DIER_CC3DE_Pos (11U) |
|
- | 4836 | #define TIM_DIER_CC3DE_Msk (0x1U << TIM_DIER_CC3DE_Pos) /*!< 0x00000800 */ |
|
2945 | #define TIM_DIER_CC3DE ((uint32_t)0x00000800) /*!<Capture/Compare 3 DMA request enable */ |
4837 | #define TIM_DIER_CC3DE TIM_DIER_CC3DE_Msk /*!<Capture/Compare 3 DMA request enable */ |
- | 4838 | #define TIM_DIER_CC4DE_Pos (12U) |
|
- | 4839 | #define TIM_DIER_CC4DE_Msk (0x1U << TIM_DIER_CC4DE_Pos) /*!< 0x00001000 */ |
|
2946 | #define TIM_DIER_CC4DE ((uint32_t)0x00001000) /*!<Capture/Compare 4 DMA request enable */ |
4840 | #define TIM_DIER_CC4DE TIM_DIER_CC4DE_Msk /*!<Capture/Compare 4 DMA request enable */ |
- | 4841 | #define TIM_DIER_COMDE_Pos (13U) |
|
- | 4842 | #define TIM_DIER_COMDE_Msk (0x1U << TIM_DIER_COMDE_Pos) /*!< 0x00002000 */ |
|
2947 | #define TIM_DIER_COMDE ((uint32_t)0x00002000) /*!<COM DMA request enable */ |
4843 | #define TIM_DIER_COMDE TIM_DIER_COMDE_Msk /*!<COM DMA request enable */ |
- | 4844 | #define TIM_DIER_TDE_Pos (14U) |
|
- | 4845 | #define TIM_DIER_TDE_Msk (0x1U << TIM_DIER_TDE_Pos) /*!< 0x00004000 */ |
|
2948 | #define TIM_DIER_TDE ((uint32_t)0x00004000) /*!<Trigger DMA request enable */ |
4846 | #define TIM_DIER_TDE TIM_DIER_TDE_Msk /*!<Trigger DMA request enable */ |
2949 | 4847 | ||
2950 | /******************** Bit definition for TIM_SR register *******************/ |
4848 | /******************** Bit definition for TIM_SR register *******************/ |
- | 4849 | #define TIM_SR_UIF_Pos (0U) |
|
- | 4850 | #define TIM_SR_UIF_Msk (0x1U << TIM_SR_UIF_Pos) /*!< 0x00000001 */ |
|
2951 | #define TIM_SR_UIF ((uint32_t)0x00000001) /*!<Update interrupt Flag */ |
4851 | #define TIM_SR_UIF TIM_SR_UIF_Msk /*!<Update interrupt Flag */ |
- | 4852 | #define TIM_SR_CC1IF_Pos (1U) |
|
- | 4853 | #define TIM_SR_CC1IF_Msk (0x1U << TIM_SR_CC1IF_Pos) /*!< 0x00000002 */ |
|
2952 | #define TIM_SR_CC1IF ((uint32_t)0x00000002) /*!<Capture/Compare 1 interrupt Flag */ |
4854 | #define TIM_SR_CC1IF TIM_SR_CC1IF_Msk /*!<Capture/Compare 1 interrupt Flag */ |
- | 4855 | #define TIM_SR_CC2IF_Pos (2U) |
|
- | 4856 | #define TIM_SR_CC2IF_Msk (0x1U << TIM_SR_CC2IF_Pos) /*!< 0x00000004 */ |
|
2953 | #define TIM_SR_CC2IF ((uint32_t)0x00000004) /*!<Capture/Compare 2 interrupt Flag */ |
4857 | #define TIM_SR_CC2IF TIM_SR_CC2IF_Msk /*!<Capture/Compare 2 interrupt Flag */ |
- | 4858 | #define TIM_SR_CC3IF_Pos (3U) |
|
- | 4859 | #define TIM_SR_CC3IF_Msk (0x1U << TIM_SR_CC3IF_Pos) /*!< 0x00000008 */ |
|
2954 | #define TIM_SR_CC3IF ((uint32_t)0x00000008) /*!<Capture/Compare 3 interrupt Flag */ |
4860 | #define TIM_SR_CC3IF TIM_SR_CC3IF_Msk /*!<Capture/Compare 3 interrupt Flag */ |
- | 4861 | #define TIM_SR_CC4IF_Pos (4U) |
|
- | 4862 | #define TIM_SR_CC4IF_Msk (0x1U << TIM_SR_CC4IF_Pos) /*!< 0x00000010 */ |
|
2955 | #define TIM_SR_CC4IF ((uint32_t)0x00000010) /*!<Capture/Compare 4 interrupt Flag */ |
4863 | #define TIM_SR_CC4IF TIM_SR_CC4IF_Msk /*!<Capture/Compare 4 interrupt Flag */ |
- | 4864 | #define TIM_SR_COMIF_Pos (5U) |
|
- | 4865 | #define TIM_SR_COMIF_Msk (0x1U << TIM_SR_COMIF_Pos) /*!< 0x00000020 */ |
|
2956 | #define TIM_SR_COMIF ((uint32_t)0x00000020) /*!<COM interrupt Flag */ |
4866 | #define TIM_SR_COMIF TIM_SR_COMIF_Msk /*!<COM interrupt Flag */ |
- | 4867 | #define TIM_SR_TIF_Pos (6U) |
|
- | 4868 | #define TIM_SR_TIF_Msk (0x1U << TIM_SR_TIF_Pos) /*!< 0x00000040 */ |
|
2957 | #define TIM_SR_TIF ((uint32_t)0x00000040) /*!<Trigger interrupt Flag */ |
4869 | #define TIM_SR_TIF TIM_SR_TIF_Msk /*!<Trigger interrupt Flag */ |
- | 4870 | #define TIM_SR_BIF_Pos (7U) |
|
- | 4871 | #define TIM_SR_BIF_Msk (0x1U << TIM_SR_BIF_Pos) /*!< 0x00000080 */ |
|
2958 | #define TIM_SR_BIF ((uint32_t)0x00000080) /*!<Break interrupt Flag */ |
4872 | #define TIM_SR_BIF TIM_SR_BIF_Msk /*!<Break interrupt Flag */ |
- | 4873 | #define TIM_SR_CC1OF_Pos (9U) |
|
- | 4874 | #define TIM_SR_CC1OF_Msk (0x1U << TIM_SR_CC1OF_Pos) /*!< 0x00000200 */ |
|
2959 | #define TIM_SR_CC1OF ((uint32_t)0x00000200) /*!<Capture/Compare 1 Overcapture Flag */ |
4875 | #define TIM_SR_CC1OF TIM_SR_CC1OF_Msk /*!<Capture/Compare 1 Overcapture Flag */ |
- | 4876 | #define TIM_SR_CC2OF_Pos (10U) |
|
- | 4877 | #define TIM_SR_CC2OF_Msk (0x1U << TIM_SR_CC2OF_Pos) /*!< 0x00000400 */ |
|
2960 | #define TIM_SR_CC2OF ((uint32_t)0x00000400) /*!<Capture/Compare 2 Overcapture Flag */ |
4878 | #define TIM_SR_CC2OF TIM_SR_CC2OF_Msk /*!<Capture/Compare 2 Overcapture Flag */ |
- | 4879 | #define TIM_SR_CC3OF_Pos (11U) |
|
- | 4880 | #define TIM_SR_CC3OF_Msk (0x1U << TIM_SR_CC3OF_Pos) /*!< 0x00000800 */ |
|
2961 | #define TIM_SR_CC3OF ((uint32_t)0x00000800) /*!<Capture/Compare 3 Overcapture Flag */ |
4881 | #define TIM_SR_CC3OF TIM_SR_CC3OF_Msk /*!<Capture/Compare 3 Overcapture Flag */ |
- | 4882 | #define TIM_SR_CC4OF_Pos (12U) |
|
- | 4883 | #define TIM_SR_CC4OF_Msk (0x1U << TIM_SR_CC4OF_Pos) /*!< 0x00001000 */ |
|
2962 | #define TIM_SR_CC4OF ((uint32_t)0x00001000) /*!<Capture/Compare 4 Overcapture Flag */ |
4884 | #define TIM_SR_CC4OF TIM_SR_CC4OF_Msk /*!<Capture/Compare 4 Overcapture Flag */ |
2963 | 4885 | ||
2964 | /******************* Bit definition for TIM_EGR register *******************/ |
4886 | /******************* Bit definition for TIM_EGR register *******************/ |
- | 4887 | #define TIM_EGR_UG_Pos (0U) |
|
- | 4888 | #define TIM_EGR_UG_Msk (0x1U << TIM_EGR_UG_Pos) /*!< 0x00000001 */ |
|
2965 | #define TIM_EGR_UG ((uint32_t)0x00000001) /*!<Update Generation */ |
4889 | #define TIM_EGR_UG TIM_EGR_UG_Msk /*!<Update Generation */ |
- | 4890 | #define TIM_EGR_CC1G_Pos (1U) |
|
- | 4891 | #define TIM_EGR_CC1G_Msk (0x1U << TIM_EGR_CC1G_Pos) /*!< 0x00000002 */ |
|
2966 | #define TIM_EGR_CC1G ((uint32_t)0x00000002) /*!<Capture/Compare 1 Generation */ |
4892 | #define TIM_EGR_CC1G TIM_EGR_CC1G_Msk /*!<Capture/Compare 1 Generation */ |
- | 4893 | #define TIM_EGR_CC2G_Pos (2U) |
|
- | 4894 | #define TIM_EGR_CC2G_Msk (0x1U << TIM_EGR_CC2G_Pos) /*!< 0x00000004 */ |
|
2967 | #define TIM_EGR_CC2G ((uint32_t)0x00000004) /*!<Capture/Compare 2 Generation */ |
4895 | #define TIM_EGR_CC2G TIM_EGR_CC2G_Msk /*!<Capture/Compare 2 Generation */ |
- | 4896 | #define TIM_EGR_CC3G_Pos (3U) |
|
- | 4897 | #define TIM_EGR_CC3G_Msk (0x1U << TIM_EGR_CC3G_Pos) /*!< 0x00000008 */ |
|
2968 | #define TIM_EGR_CC3G ((uint32_t)0x00000008) /*!<Capture/Compare 3 Generation */ |
4898 | #define TIM_EGR_CC3G TIM_EGR_CC3G_Msk /*!<Capture/Compare 3 Generation */ |
- | 4899 | #define TIM_EGR_CC4G_Pos (4U) |
|
- | 4900 | #define TIM_EGR_CC4G_Msk (0x1U << TIM_EGR_CC4G_Pos) /*!< 0x00000010 */ |
|
2969 | #define TIM_EGR_CC4G ((uint32_t)0x00000010) /*!<Capture/Compare 4 Generation */ |
4901 | #define TIM_EGR_CC4G TIM_EGR_CC4G_Msk /*!<Capture/Compare 4 Generation */ |
- | 4902 | #define TIM_EGR_COMG_Pos (5U) |
|
- | 4903 | #define TIM_EGR_COMG_Msk (0x1U << TIM_EGR_COMG_Pos) /*!< 0x00000020 */ |
|
2970 | #define TIM_EGR_COMG ((uint32_t)0x00000020) /*!<Capture/Compare Control Update Generation */ |
4904 | #define TIM_EGR_COMG TIM_EGR_COMG_Msk /*!<Capture/Compare Control Update Generation */ |
- | 4905 | #define TIM_EGR_TG_Pos (6U) |
|
- | 4906 | #define TIM_EGR_TG_Msk (0x1U << TIM_EGR_TG_Pos) /*!< 0x00000040 */ |
|
2971 | #define TIM_EGR_TG ((uint32_t)0x00000040) /*!<Trigger Generation */ |
4907 | #define TIM_EGR_TG TIM_EGR_TG_Msk /*!<Trigger Generation */ |
- | 4908 | #define TIM_EGR_BG_Pos (7U) |
|
- | 4909 | #define TIM_EGR_BG_Msk (0x1U << TIM_EGR_BG_Pos) /*!< 0x00000080 */ |
|
2972 | #define TIM_EGR_BG ((uint32_t)0x00000080) /*!<Break Generation */ |
4910 | #define TIM_EGR_BG TIM_EGR_BG_Msk /*!<Break Generation */ |
2973 | 4911 | ||
2974 | /****************** Bit definition for TIM_CCMR1 register ******************/ |
4912 | /****************** Bit definition for TIM_CCMR1 register ******************/ |
- | 4913 | #define TIM_CCMR1_CC1S_Pos (0U) |
|
- | 4914 | #define TIM_CCMR1_CC1S_Msk (0x3U << TIM_CCMR1_CC1S_Pos) /*!< 0x00000003 */ |
|
2975 | #define TIM_CCMR1_CC1S ((uint32_t)0x00000003) /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */ |
4915 | #define TIM_CCMR1_CC1S TIM_CCMR1_CC1S_Msk /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */ |
2976 | #define TIM_CCMR1_CC1S_0 ((uint32_t)0x00000001) /*!<Bit 0 */ |
4916 | #define TIM_CCMR1_CC1S_0 (0x1U << TIM_CCMR1_CC1S_Pos) /*!< 0x00000001 */ |
2977 | #define TIM_CCMR1_CC1S_1 ((uint32_t)0x00000002) /*!<Bit 1 */ |
4917 | #define TIM_CCMR1_CC1S_1 (0x2U << TIM_CCMR1_CC1S_Pos) /*!< 0x00000002 */ |
2978 | 4918 | ||
- | 4919 | #define TIM_CCMR1_OC1FE_Pos (2U) |
|
- | 4920 | #define TIM_CCMR1_OC1FE_Msk (0x1U << TIM_CCMR1_OC1FE_Pos) /*!< 0x00000004 */ |
|
2979 | #define TIM_CCMR1_OC1FE ((uint32_t)0x00000004) /*!<Output Compare 1 Fast enable */ |
4921 | #define TIM_CCMR1_OC1FE TIM_CCMR1_OC1FE_Msk /*!<Output Compare 1 Fast enable */ |
- | 4922 | #define TIM_CCMR1_OC1PE_Pos (3U) |
|
- | 4923 | #define TIM_CCMR1_OC1PE_Msk (0x1U << TIM_CCMR1_OC1PE_Pos) /*!< 0x00000008 */ |
|
2980 | #define TIM_CCMR1_OC1PE ((uint32_t)0x00000008) /*!<Output Compare 1 Preload enable */ |
4924 | #define TIM_CCMR1_OC1PE TIM_CCMR1_OC1PE_Msk /*!<Output Compare 1 Preload enable */ |
2981 | 4925 | ||
- | 4926 | #define TIM_CCMR1_OC1M_Pos (4U) |
|
- | 4927 | #define TIM_CCMR1_OC1M_Msk (0x7U << TIM_CCMR1_OC1M_Pos) /*!< 0x00000070 */ |
|
2982 | #define TIM_CCMR1_OC1M ((uint32_t)0x00000070) /*!<OC1M[2:0] bits (Output Compare 1 Mode) */ |
4928 | #define TIM_CCMR1_OC1M TIM_CCMR1_OC1M_Msk /*!<OC1M[2:0] bits (Output Compare 1 Mode) */ |
2983 | #define TIM_CCMR1_OC1M_0 ((uint32_t)0x00000010) /*!<Bit 0 */ |
4929 | #define TIM_CCMR1_OC1M_0 (0x1U << TIM_CCMR1_OC1M_Pos) /*!< 0x00000010 */ |
2984 | #define TIM_CCMR1_OC1M_1 ((uint32_t)0x00000020) /*!<Bit 1 */ |
4930 | #define TIM_CCMR1_OC1M_1 (0x2U << TIM_CCMR1_OC1M_Pos) /*!< 0x00000020 */ |
2985 | #define TIM_CCMR1_OC1M_2 ((uint32_t)0x00000040) /*!<Bit 2 */ |
4931 | #define TIM_CCMR1_OC1M_2 (0x4U << TIM_CCMR1_OC1M_Pos) /*!< 0x00000040 */ |
2986 | 4932 | ||
- | 4933 | #define TIM_CCMR1_OC1CE_Pos (7U) |
|
- | 4934 | #define TIM_CCMR1_OC1CE_Msk (0x1U << TIM_CCMR1_OC1CE_Pos) /*!< 0x00000080 */ |
|
2987 | #define TIM_CCMR1_OC1CE ((uint32_t)0x00000080) /*!<Output Compare 1Clear Enable */ |
4935 | #define TIM_CCMR1_OC1CE TIM_CCMR1_OC1CE_Msk /*!<Output Compare 1Clear Enable */ |
2988 | 4936 | ||
- | 4937 | #define TIM_CCMR1_CC2S_Pos (8U) |
|
- | 4938 | #define TIM_CCMR1_CC2S_Msk (0x3U << TIM_CCMR1_CC2S_Pos) /*!< 0x00000300 */ |
|
2989 | #define TIM_CCMR1_CC2S ((uint32_t)0x00000300) /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */ |
4939 | #define TIM_CCMR1_CC2S TIM_CCMR1_CC2S_Msk /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */ |
2990 | #define TIM_CCMR1_CC2S_0 ((uint32_t)0x00000100) /*!<Bit 0 */ |
4940 | #define TIM_CCMR1_CC2S_0 (0x1U << TIM_CCMR1_CC2S_Pos) /*!< 0x00000100 */ |
2991 | #define TIM_CCMR1_CC2S_1 ((uint32_t)0x00000200) /*!<Bit 1 */ |
4941 | #define TIM_CCMR1_CC2S_1 (0x2U << TIM_CCMR1_CC2S_Pos) /*!< 0x00000200 */ |
2992 | 4942 | ||
- | 4943 | #define TIM_CCMR1_OC2FE_Pos (10U) |
|
- | 4944 | #define TIM_CCMR1_OC2FE_Msk (0x1U << TIM_CCMR1_OC2FE_Pos) /*!< 0x00000400 */ |
|
2993 | #define TIM_CCMR1_OC2FE ((uint32_t)0x00000400) /*!<Output Compare 2 Fast enable */ |
4945 | #define TIM_CCMR1_OC2FE TIM_CCMR1_OC2FE_Msk /*!<Output Compare 2 Fast enable */ |
- | 4946 | #define TIM_CCMR1_OC2PE_Pos (11U) |
|
- | 4947 | #define TIM_CCMR1_OC2PE_Msk (0x1U << TIM_CCMR1_OC2PE_Pos) /*!< 0x00000800 */ |
|
2994 | #define TIM_CCMR1_OC2PE ((uint32_t)0x00000800) /*!<Output Compare 2 Preload enable */ |
4948 | #define TIM_CCMR1_OC2PE TIM_CCMR1_OC2PE_Msk /*!<Output Compare 2 Preload enable */ |
2995 | 4949 | ||
- | 4950 | #define TIM_CCMR1_OC2M_Pos (12U) |
|
- | 4951 | #define TIM_CCMR1_OC2M_Msk (0x7U << TIM_CCMR1_OC2M_Pos) /*!< 0x00007000 */ |
|
2996 | #define TIM_CCMR1_OC2M ((uint32_t)0x00007000) /*!<OC2M[2:0] bits (Output Compare 2 Mode) */ |
4952 | #define TIM_CCMR1_OC2M TIM_CCMR1_OC2M_Msk /*!<OC2M[2:0] bits (Output Compare 2 Mode) */ |
2997 | #define TIM_CCMR1_OC2M_0 ((uint32_t)0x00001000) /*!<Bit 0 */ |
4953 | #define TIM_CCMR1_OC2M_0 (0x1U << TIM_CCMR1_OC2M_Pos) /*!< 0x00001000 */ |
2998 | #define TIM_CCMR1_OC2M_1 ((uint32_t)0x00002000) /*!<Bit 1 */ |
4954 | #define TIM_CCMR1_OC2M_1 (0x2U << TIM_CCMR1_OC2M_Pos) /*!< 0x00002000 */ |
2999 | #define TIM_CCMR1_OC2M_2 ((uint32_t)0x00004000) /*!<Bit 2 */ |
4955 | #define TIM_CCMR1_OC2M_2 (0x4U << TIM_CCMR1_OC2M_Pos) /*!< 0x00004000 */ |
3000 | 4956 | ||
- | 4957 | #define TIM_CCMR1_OC2CE_Pos (15U) |
|
- | 4958 | #define TIM_CCMR1_OC2CE_Msk (0x1U << TIM_CCMR1_OC2CE_Pos) /*!< 0x00008000 */ |
|
3001 | #define TIM_CCMR1_OC2CE ((uint32_t)0x00008000) /*!<Output Compare 2 Clear Enable */ |
4959 | #define TIM_CCMR1_OC2CE TIM_CCMR1_OC2CE_Msk /*!<Output Compare 2 Clear Enable */ |
3002 | 4960 | ||
3003 | /*---------------------------------------------------------------------------*/ |
4961 | /*---------------------------------------------------------------------------*/ |
3004 | 4962 | ||
- | 4963 | #define TIM_CCMR1_IC1PSC_Pos (2U) |
|
- | 4964 | #define TIM_CCMR1_IC1PSC_Msk (0x3U << TIM_CCMR1_IC1PSC_Pos) /*!< 0x0000000C */ |
|
3005 | #define TIM_CCMR1_IC1PSC ((uint32_t)0x0000000C) /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */ |
4965 | #define TIM_CCMR1_IC1PSC TIM_CCMR1_IC1PSC_Msk /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */ |
3006 | #define TIM_CCMR1_IC1PSC_0 ((uint32_t)0x00000004) /*!<Bit 0 */ |
4966 | #define TIM_CCMR1_IC1PSC_0 (0x1U << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000004 */ |
3007 | #define TIM_CCMR1_IC1PSC_1 ((uint32_t)0x00000008) /*!<Bit 1 */ |
4967 | #define TIM_CCMR1_IC1PSC_1 (0x2U << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000008 */ |
3008 | 4968 | ||
- | 4969 | #define TIM_CCMR1_IC1F_Pos (4U) |
|
- | 4970 | #define TIM_CCMR1_IC1F_Msk (0xFU << TIM_CCMR1_IC1F_Pos) /*!< 0x000000F0 */ |
|
3009 | #define TIM_CCMR1_IC1F ((uint32_t)0x000000F0) /*!<IC1F[3:0] bits (Input Capture 1 Filter) */ |
4971 | #define TIM_CCMR1_IC1F TIM_CCMR1_IC1F_Msk /*!<IC1F[3:0] bits (Input Capture 1 Filter) */ |
3010 | #define TIM_CCMR1_IC1F_0 ((uint32_t)0x00000010) /*!<Bit 0 */ |
4972 | #define TIM_CCMR1_IC1F_0 (0x1U << TIM_CCMR1_IC1F_Pos) /*!< 0x00000010 */ |
3011 | #define TIM_CCMR1_IC1F_1 ((uint32_t)0x00000020) /*!<Bit 1 */ |
4973 | #define TIM_CCMR1_IC1F_1 (0x2U << TIM_CCMR1_IC1F_Pos) /*!< 0x00000020 */ |
3012 | #define TIM_CCMR1_IC1F_2 ((uint32_t)0x00000040) /*!<Bit 2 */ |
4974 | #define TIM_CCMR1_IC1F_2 (0x4U << TIM_CCMR1_IC1F_Pos) /*!< 0x00000040 */ |
3013 | #define TIM_CCMR1_IC1F_3 ((uint32_t)0x00000080) /*!<Bit 3 */ |
4975 | #define TIM_CCMR1_IC1F_3 (0x8U << TIM_CCMR1_IC1F_Pos) /*!< 0x00000080 */ |
3014 | 4976 | ||
- | 4977 | #define TIM_CCMR1_IC2PSC_Pos (10U) |
|
- | 4978 | #define TIM_CCMR1_IC2PSC_Msk (0x3U << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000C00 */ |
|
3015 | #define TIM_CCMR1_IC2PSC ((uint32_t)0x00000C00) /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */ |
4979 | #define TIM_CCMR1_IC2PSC TIM_CCMR1_IC2PSC_Msk /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */ |
3016 | #define TIM_CCMR1_IC2PSC_0 ((uint32_t)0x00000400) /*!<Bit 0 */ |
4980 | #define TIM_CCMR1_IC2PSC_0 (0x1U << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000400 */ |
3017 | #define TIM_CCMR1_IC2PSC_1 ((uint32_t)0x00000800) /*!<Bit 1 */ |
4981 | #define TIM_CCMR1_IC2PSC_1 (0x2U << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000800 */ |
3018 | 4982 | ||
- | 4983 | #define TIM_CCMR1_IC2F_Pos (12U) |
|
- | 4984 | #define TIM_CCMR1_IC2F_Msk (0xFU << TIM_CCMR1_IC2F_Pos) /*!< 0x0000F000 */ |
|
3019 | #define TIM_CCMR1_IC2F ((uint32_t)0x0000F000) /*!<IC2F[3:0] bits (Input Capture 2 Filter) */ |
4985 | #define TIM_CCMR1_IC2F TIM_CCMR1_IC2F_Msk /*!<IC2F[3:0] bits (Input Capture 2 Filter) */ |
3020 | #define TIM_CCMR1_IC2F_0 ((uint32_t)0x00001000) /*!<Bit 0 */ |
4986 | #define TIM_CCMR1_IC2F_0 (0x1U << TIM_CCMR1_IC2F_Pos) /*!< 0x00001000 */ |
3021 | #define TIM_CCMR1_IC2F_1 ((uint32_t)0x00002000) /*!<Bit 1 */ |
4987 | #define TIM_CCMR1_IC2F_1 (0x2U << TIM_CCMR1_IC2F_Pos) /*!< 0x00002000 */ |
3022 | #define TIM_CCMR1_IC2F_2 ((uint32_t)0x00004000) /*!<Bit 2 */ |
4988 | #define TIM_CCMR1_IC2F_2 (0x4U << TIM_CCMR1_IC2F_Pos) /*!< 0x00004000 */ |
3023 | #define TIM_CCMR1_IC2F_3 ((uint32_t)0x00008000) /*!<Bit 3 */ |
4989 | #define TIM_CCMR1_IC2F_3 (0x8U << TIM_CCMR1_IC2F_Pos) /*!< 0x00008000 */ |
3024 | 4990 | ||
3025 | /****************** Bit definition for TIM_CCMR2 register ******************/ |
4991 | /****************** Bit definition for TIM_CCMR2 register ******************/ |
- | 4992 | #define TIM_CCMR2_CC3S_Pos (0U) |
|
- | 4993 | #define TIM_CCMR2_CC3S_Msk (0x3U << TIM_CCMR2_CC3S_Pos) /*!< 0x00000003 */ |
|
3026 | #define TIM_CCMR2_CC3S ((uint32_t)0x00000003) /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */ |
4994 | #define TIM_CCMR2_CC3S TIM_CCMR2_CC3S_Msk /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */ |
3027 | #define TIM_CCMR2_CC3S_0 ((uint32_t)0x00000001) /*!<Bit 0 */ |
4995 | #define TIM_CCMR2_CC3S_0 (0x1U << TIM_CCMR2_CC3S_Pos) /*!< 0x00000001 */ |
3028 | #define TIM_CCMR2_CC3S_1 ((uint32_t)0x00000002) /*!<Bit 1 */ |
4996 | #define TIM_CCMR2_CC3S_1 (0x2U << TIM_CCMR2_CC3S_Pos) /*!< 0x00000002 */ |
3029 | 4997 | ||
- | 4998 | #define TIM_CCMR2_OC3FE_Pos (2U) |
|
- | 4999 | #define TIM_CCMR2_OC3FE_Msk (0x1U << TIM_CCMR2_OC3FE_Pos) /*!< 0x00000004 */ |
|
3030 | #define TIM_CCMR2_OC3FE ((uint32_t)0x00000004) /*!<Output Compare 3 Fast enable */ |
5000 | #define TIM_CCMR2_OC3FE TIM_CCMR2_OC3FE_Msk /*!<Output Compare 3 Fast enable */ |
- | 5001 | #define TIM_CCMR2_OC3PE_Pos (3U) |
|
- | 5002 | #define TIM_CCMR2_OC3PE_Msk (0x1U << TIM_CCMR2_OC3PE_Pos) /*!< 0x00000008 */ |
|
3031 | #define TIM_CCMR2_OC3PE ((uint32_t)0x00000008) /*!<Output Compare 3 Preload enable */ |
5003 | #define TIM_CCMR2_OC3PE TIM_CCMR2_OC3PE_Msk /*!<Output Compare 3 Preload enable */ |
3032 | 5004 | ||
- | 5005 | #define TIM_CCMR2_OC3M_Pos (4U) |
|
- | 5006 | #define TIM_CCMR2_OC3M_Msk (0x7U << TIM_CCMR2_OC3M_Pos) /*!< 0x00000070 */ |
|
3033 | #define TIM_CCMR2_OC3M ((uint32_t)0x00000070) /*!<OC3M[2:0] bits (Output Compare 3 Mode) */ |
5007 | #define TIM_CCMR2_OC3M TIM_CCMR2_OC3M_Msk /*!<OC3M[2:0] bits (Output Compare 3 Mode) */ |
3034 | #define TIM_CCMR2_OC3M_0 ((uint32_t)0x00000010) /*!<Bit 0 */ |
5008 | #define TIM_CCMR2_OC3M_0 (0x1U << TIM_CCMR2_OC3M_Pos) /*!< 0x00000010 */ |
3035 | #define TIM_CCMR2_OC3M_1 ((uint32_t)0x00000020) /*!<Bit 1 */ |
5009 | #define TIM_CCMR2_OC3M_1 (0x2U << TIM_CCMR2_OC3M_Pos) /*!< 0x00000020 */ |
3036 | #define TIM_CCMR2_OC3M_2 ((uint32_t)0x00000040) /*!<Bit 2 */ |
5010 | #define TIM_CCMR2_OC3M_2 (0x4U << TIM_CCMR2_OC3M_Pos) /*!< 0x00000040 */ |
3037 | 5011 | ||
- | 5012 | #define TIM_CCMR2_OC3CE_Pos (7U) |
|
- | 5013 | #define TIM_CCMR2_OC3CE_Msk (0x1U << TIM_CCMR2_OC3CE_Pos) /*!< 0x00000080 */ |
|
3038 | #define TIM_CCMR2_OC3CE ((uint32_t)0x00000080) /*!<Output Compare 3 Clear Enable */ |
5014 | #define TIM_CCMR2_OC3CE TIM_CCMR2_OC3CE_Msk /*!<Output Compare 3 Clear Enable */ |
3039 | 5015 | ||
- | 5016 | #define TIM_CCMR2_CC4S_Pos (8U) |
|
- | 5017 | #define TIM_CCMR2_CC4S_Msk (0x3U << TIM_CCMR2_CC4S_Pos) /*!< 0x00000300 */ |
|
3040 | #define TIM_CCMR2_CC4S ((uint32_t)0x00000300) /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */ |
5018 | #define TIM_CCMR2_CC4S TIM_CCMR2_CC4S_Msk /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */ |
3041 | #define TIM_CCMR2_CC4S_0 ((uint32_t)0x00000100) /*!<Bit 0 */ |
5019 | #define TIM_CCMR2_CC4S_0 (0x1U << TIM_CCMR2_CC4S_Pos) /*!< 0x00000100 */ |
3042 | #define TIM_CCMR2_CC4S_1 ((uint32_t)0x00000200) /*!<Bit 1 */ |
5020 | #define TIM_CCMR2_CC4S_1 (0x2U << TIM_CCMR2_CC4S_Pos) /*!< 0x00000200 */ |
3043 | 5021 | ||
- | 5022 | #define TIM_CCMR2_OC4FE_Pos (10U) |
|
- | 5023 | #define TIM_CCMR2_OC4FE_Msk (0x1U << TIM_CCMR2_OC4FE_Pos) /*!< 0x00000400 */ |
|
3044 | #define TIM_CCMR2_OC4FE ((uint32_t)0x00000400) /*!<Output Compare 4 Fast enable */ |
5024 | #define TIM_CCMR2_OC4FE TIM_CCMR2_OC4FE_Msk /*!<Output Compare 4 Fast enable */ |
- | 5025 | #define TIM_CCMR2_OC4PE_Pos (11U) |
|
- | 5026 | #define TIM_CCMR2_OC4PE_Msk (0x1U << TIM_CCMR2_OC4PE_Pos) /*!< 0x00000800 */ |
|
3045 | #define TIM_CCMR2_OC4PE ((uint32_t)0x00000800) /*!<Output Compare 4 Preload enable */ |
5027 | #define TIM_CCMR2_OC4PE TIM_CCMR2_OC4PE_Msk /*!<Output Compare 4 Preload enable */ |
3046 | 5028 | ||
- | 5029 | #define TIM_CCMR2_OC4M_Pos (12U) |
|
- | 5030 | #define TIM_CCMR2_OC4M_Msk (0x7U << TIM_CCMR2_OC4M_Pos) /*!< 0x00007000 */ |
|
3047 | #define TIM_CCMR2_OC4M ((uint32_t)0x00007000) /*!<OC4M[2:0] bits (Output Compare 4 Mode) */ |
5031 | #define TIM_CCMR2_OC4M TIM_CCMR2_OC4M_Msk /*!<OC4M[2:0] bits (Output Compare 4 Mode) */ |
3048 | #define TIM_CCMR2_OC4M_0 ((uint32_t)0x00001000) /*!<Bit 0 */ |
5032 | #define TIM_CCMR2_OC4M_0 (0x1U << TIM_CCMR2_OC4M_Pos) /*!< 0x00001000 */ |
3049 | #define TIM_CCMR2_OC4M_1 ((uint32_t)0x00002000) /*!<Bit 1 */ |
5033 | #define TIM_CCMR2_OC4M_1 (0x2U << TIM_CCMR2_OC4M_Pos) /*!< 0x00002000 */ |
3050 | #define TIM_CCMR2_OC4M_2 ((uint32_t)0x00004000) /*!<Bit 2 */ |
5034 | #define TIM_CCMR2_OC4M_2 (0x4U << TIM_CCMR2_OC4M_Pos) /*!< 0x00004000 */ |
3051 | 5035 | ||
- | 5036 | #define TIM_CCMR2_OC4CE_Pos (15U) |
|
- | 5037 | #define TIM_CCMR2_OC4CE_Msk (0x1U << TIM_CCMR2_OC4CE_Pos) /*!< 0x00008000 */ |
|
3052 | #define TIM_CCMR2_OC4CE ((uint32_t)0x00008000) /*!<Output Compare 4 Clear Enable */ |
5038 | #define TIM_CCMR2_OC4CE TIM_CCMR2_OC4CE_Msk /*!<Output Compare 4 Clear Enable */ |
3053 | 5039 | ||
3054 | /*---------------------------------------------------------------------------*/ |
5040 | /*---------------------------------------------------------------------------*/ |
3055 | 5041 | ||
- | 5042 | #define TIM_CCMR2_IC3PSC_Pos (2U) |
|
- | 5043 | #define TIM_CCMR2_IC3PSC_Msk (0x3U << TIM_CCMR2_IC3PSC_Pos) /*!< 0x0000000C */ |
|
3056 | #define TIM_CCMR2_IC3PSC ((uint32_t)0x0000000C) /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */ |
5044 | #define TIM_CCMR2_IC3PSC TIM_CCMR2_IC3PSC_Msk /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */ |
3057 | #define TIM_CCMR2_IC3PSC_0 ((uint32_t)0x00000004) /*!<Bit 0 */ |
5045 | #define TIM_CCMR2_IC3PSC_0 (0x1U << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000004 */ |
3058 | #define TIM_CCMR2_IC3PSC_1 ((uint32_t)0x00000008) /*!<Bit 1 */ |
5046 | #define TIM_CCMR2_IC3PSC_1 (0x2U << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000008 */ |
3059 | 5047 | ||
- | 5048 | #define TIM_CCMR2_IC3F_Pos (4U) |
|
- | 5049 | #define TIM_CCMR2_IC3F_Msk (0xFU << TIM_CCMR2_IC3F_Pos) /*!< 0x000000F0 */ |
|
3060 | #define TIM_CCMR2_IC3F ((uint32_t)0x000000F0) /*!<IC3F[3:0] bits (Input Capture 3 Filter) */ |
5050 | #define TIM_CCMR2_IC3F TIM_CCMR2_IC3F_Msk /*!<IC3F[3:0] bits (Input Capture 3 Filter) */ |
3061 | #define TIM_CCMR2_IC3F_0 ((uint32_t)0x00000010) /*!<Bit 0 */ |
5051 | #define TIM_CCMR2_IC3F_0 (0x1U << TIM_CCMR2_IC3F_Pos) /*!< 0x00000010 */ |
3062 | #define TIM_CCMR2_IC3F_1 ((uint32_t)0x00000020) /*!<Bit 1 */ |
5052 | #define TIM_CCMR2_IC3F_1 (0x2U << TIM_CCMR2_IC3F_Pos) /*!< 0x00000020 */ |
3063 | #define TIM_CCMR2_IC3F_2 ((uint32_t)0x00000040) /*!<Bit 2 */ |
5053 | #define TIM_CCMR2_IC3F_2 (0x4U << TIM_CCMR2_IC3F_Pos) /*!< 0x00000040 */ |
3064 | #define TIM_CCMR2_IC3F_3 ((uint32_t)0x00000080) /*!<Bit 3 */ |
5054 | #define TIM_CCMR2_IC3F_3 (0x8U << TIM_CCMR2_IC3F_Pos) /*!< 0x00000080 */ |
3065 | 5055 | ||
- | 5056 | #define TIM_CCMR2_IC4PSC_Pos (10U) |
|
- | 5057 | #define TIM_CCMR2_IC4PSC_Msk (0x3U << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000C00 */ |
|
3066 | #define TIM_CCMR2_IC4PSC ((uint32_t)0x00000C00) /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */ |
5058 | #define TIM_CCMR2_IC4PSC TIM_CCMR2_IC4PSC_Msk /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */ |
3067 | #define TIM_CCMR2_IC4PSC_0 ((uint32_t)0x00000400) /*!<Bit 0 */ |
5059 | #define TIM_CCMR2_IC4PSC_0 (0x1U << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000400 */ |
3068 | #define TIM_CCMR2_IC4PSC_1 ((uint32_t)0x00000800) /*!<Bit 1 */ |
5060 | #define TIM_CCMR2_IC4PSC_1 (0x2U << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000800 */ |
3069 | 5061 | ||
- | 5062 | #define TIM_CCMR2_IC4F_Pos (12U) |
|
- | 5063 | #define TIM_CCMR2_IC4F_Msk (0xFU << TIM_CCMR2_IC4F_Pos) /*!< 0x0000F000 */ |
|
3070 | #define TIM_CCMR2_IC4F ((uint32_t)0x0000F000) /*!<IC4F[3:0] bits (Input Capture 4 Filter) */ |
5064 | #define TIM_CCMR2_IC4F TIM_CCMR2_IC4F_Msk /*!<IC4F[3:0] bits (Input Capture 4 Filter) */ |
3071 | #define TIM_CCMR2_IC4F_0 ((uint32_t)0x00001000) /*!<Bit 0 */ |
5065 | #define TIM_CCMR2_IC4F_0 (0x1U << TIM_CCMR2_IC4F_Pos) /*!< 0x00001000 */ |
3072 | #define TIM_CCMR2_IC4F_1 ((uint32_t)0x00002000) /*!<Bit 1 */ |
5066 | #define TIM_CCMR2_IC4F_1 (0x2U << TIM_CCMR2_IC4F_Pos) /*!< 0x00002000 */ |
3073 | #define TIM_CCMR2_IC4F_2 ((uint32_t)0x00004000) /*!<Bit 2 */ |
5067 | #define TIM_CCMR2_IC4F_2 (0x4U << TIM_CCMR2_IC4F_Pos) /*!< 0x00004000 */ |
3074 | #define TIM_CCMR2_IC4F_3 ((uint32_t)0x00008000) /*!<Bit 3 */ |
5068 | #define TIM_CCMR2_IC4F_3 (0x8U << TIM_CCMR2_IC4F_Pos) /*!< 0x00008000 */ |
3075 | 5069 | ||
3076 | /******************* Bit definition for TIM_CCER register ******************/ |
5070 | /******************* Bit definition for TIM_CCER register ******************/ |
- | 5071 | #define TIM_CCER_CC1E_Pos (0U) |
|
- | 5072 | #define TIM_CCER_CC1E_Msk (0x1U << TIM_CCER_CC1E_Pos) /*!< 0x00000001 */ |
|
3077 | #define TIM_CCER_CC1E ((uint32_t)0x00000001) /*!<Capture/Compare 1 output enable */ |
5073 | #define TIM_CCER_CC1E TIM_CCER_CC1E_Msk /*!<Capture/Compare 1 output enable */ |
- | 5074 | #define TIM_CCER_CC1P_Pos (1U) |
|
- | 5075 | #define TIM_CCER_CC1P_Msk (0x1U << TIM_CCER_CC1P_Pos) /*!< 0x00000002 */ |
|
3078 | #define TIM_CCER_CC1P ((uint32_t)0x00000002) /*!<Capture/Compare 1 output Polarity */ |
5076 | #define TIM_CCER_CC1P TIM_CCER_CC1P_Msk /*!<Capture/Compare 1 output Polarity */ |
- | 5077 | #define TIM_CCER_CC1NE_Pos (2U) |
|
- | 5078 | #define TIM_CCER_CC1NE_Msk (0x1U << TIM_CCER_CC1NE_Pos) /*!< 0x00000004 */ |
|
3079 | #define TIM_CCER_CC1NE ((uint32_t)0x00000004) /*!<Capture/Compare 1 Complementary output enable */ |
5079 | #define TIM_CCER_CC1NE TIM_CCER_CC1NE_Msk /*!<Capture/Compare 1 Complementary output enable */ |
- | 5080 | #define TIM_CCER_CC1NP_Pos (3U) |
|
- | 5081 | #define TIM_CCER_CC1NP_Msk (0x1U << TIM_CCER_CC1NP_Pos) /*!< 0x00000008 */ |
|
3080 | #define TIM_CCER_CC1NP ((uint32_t)0x00000008) /*!<Capture/Compare 1 Complementary output Polarity */ |
5082 | #define TIM_CCER_CC1NP TIM_CCER_CC1NP_Msk /*!<Capture/Compare 1 Complementary output Polarity */ |
- | 5083 | #define TIM_CCER_CC2E_Pos (4U) |
|
- | 5084 | #define TIM_CCER_CC2E_Msk (0x1U << TIM_CCER_CC2E_Pos) /*!< 0x00000010 */ |
|
3081 | #define TIM_CCER_CC2E ((uint32_t)0x00000010) /*!<Capture/Compare 2 output enable */ |
5085 | #define TIM_CCER_CC2E TIM_CCER_CC2E_Msk /*!<Capture/Compare 2 output enable */ |
- | 5086 | #define TIM_CCER_CC2P_Pos (5U) |
|
- | 5087 | #define TIM_CCER_CC2P_Msk (0x1U << TIM_CCER_CC2P_Pos) /*!< 0x00000020 */ |
|
3082 | #define TIM_CCER_CC2P ((uint32_t)0x00000020) /*!<Capture/Compare 2 output Polarity */ |
5088 | #define TIM_CCER_CC2P TIM_CCER_CC2P_Msk /*!<Capture/Compare 2 output Polarity */ |
- | 5089 | #define TIM_CCER_CC2NE_Pos (6U) |
|
- | 5090 | #define TIM_CCER_CC2NE_Msk (0x1U << TIM_CCER_CC2NE_Pos) /*!< 0x00000040 */ |
|
3083 | #define TIM_CCER_CC2NE ((uint32_t)0x00000040) /*!<Capture/Compare 2 Complementary output enable */ |
5091 | #define TIM_CCER_CC2NE TIM_CCER_CC2NE_Msk /*!<Capture/Compare 2 Complementary output enable */ |
- | 5092 | #define TIM_CCER_CC2NP_Pos (7U) |
|
- | 5093 | #define TIM_CCER_CC2NP_Msk (0x1U << TIM_CCER_CC2NP_Pos) /*!< 0x00000080 */ |
|
3084 | #define TIM_CCER_CC2NP ((uint32_t)0x00000080) /*!<Capture/Compare 2 Complementary output Polarity */ |
5094 | #define TIM_CCER_CC2NP TIM_CCER_CC2NP_Msk /*!<Capture/Compare 2 Complementary output Polarity */ |
- | 5095 | #define TIM_CCER_CC3E_Pos (8U) |
|
- | 5096 | #define TIM_CCER_CC3E_Msk (0x1U << TIM_CCER_CC3E_Pos) /*!< 0x00000100 */ |
|
3085 | #define TIM_CCER_CC3E ((uint32_t)0x00000100) /*!<Capture/Compare 3 output enable */ |
5097 | #define TIM_CCER_CC3E TIM_CCER_CC3E_Msk /*!<Capture/Compare 3 output enable */ |
- | 5098 | #define TIM_CCER_CC3P_Pos (9U) |
|
- | 5099 | #define TIM_CCER_CC3P_Msk (0x1U << TIM_CCER_CC3P_Pos) /*!< 0x00000200 */ |
|
3086 | #define TIM_CCER_CC3P ((uint32_t)0x00000200) /*!<Capture/Compare 3 output Polarity */ |
5100 | #define TIM_CCER_CC3P TIM_CCER_CC3P_Msk /*!<Capture/Compare 3 output Polarity */ |
- | 5101 | #define TIM_CCER_CC3NE_Pos (10U) |
|
- | 5102 | #define TIM_CCER_CC3NE_Msk (0x1U << TIM_CCER_CC3NE_Pos) /*!< 0x00000400 */ |
|
3087 | #define TIM_CCER_CC3NE ((uint32_t)0x00000400) /*!<Capture/Compare 3 Complementary output enable */ |
5103 | #define TIM_CCER_CC3NE TIM_CCER_CC3NE_Msk /*!<Capture/Compare 3 Complementary output enable */ |
- | 5104 | #define TIM_CCER_CC3NP_Pos (11U) |
|
- | 5105 | #define TIM_CCER_CC3NP_Msk (0x1U << TIM_CCER_CC3NP_Pos) /*!< 0x00000800 */ |
|
3088 | #define TIM_CCER_CC3NP ((uint32_t)0x00000800) /*!<Capture/Compare 3 Complementary output Polarity */ |
5106 | #define TIM_CCER_CC3NP TIM_CCER_CC3NP_Msk /*!<Capture/Compare 3 Complementary output Polarity */ |
- | 5107 | #define TIM_CCER_CC4E_Pos (12U) |
|
- | 5108 | #define TIM_CCER_CC4E_Msk (0x1U << TIM_CCER_CC4E_Pos) /*!< 0x00001000 */ |
|
3089 | #define TIM_CCER_CC4E ((uint32_t)0x00001000) /*!<Capture/Compare 4 output enable */ |
5109 | #define TIM_CCER_CC4E TIM_CCER_CC4E_Msk /*!<Capture/Compare 4 output enable */ |
- | 5110 | #define TIM_CCER_CC4P_Pos (13U) |
|
- | 5111 | #define TIM_CCER_CC4P_Msk (0x1U << TIM_CCER_CC4P_Pos) /*!< 0x00002000 */ |
|
3090 | #define TIM_CCER_CC4P ((uint32_t)0x00002000) /*!<Capture/Compare 4 output Polarity */ |
5112 | #define TIM_CCER_CC4P TIM_CCER_CC4P_Msk /*!<Capture/Compare 4 output Polarity */ |
- | 5113 | #define TIM_CCER_CC4NP_Pos (15U) |
|
- | 5114 | #define TIM_CCER_CC4NP_Msk (0x1U << TIM_CCER_CC4NP_Pos) /*!< 0x00008000 */ |
|
3091 | #define TIM_CCER_CC4NP ((uint32_t)0x00008000) /*!<Capture/Compare 4 Complementary output Polarity */ |
5115 | #define TIM_CCER_CC4NP TIM_CCER_CC4NP_Msk /*!<Capture/Compare 4 Complementary output Polarity */ |
3092 | 5116 | ||
3093 | /******************* Bit definition for TIM_CNT register *******************/ |
5117 | /******************* Bit definition for TIM_CNT register *******************/ |
- | 5118 | #define TIM_CNT_CNT_Pos (0U) |
|
- | 5119 | #define TIM_CNT_CNT_Msk (0xFFFFFFFFU << TIM_CNT_CNT_Pos) /*!< 0xFFFFFFFF */ |
|
3094 | #define TIM_CNT_CNT ((uint32_t)0xFFFFFFFF) /*!<Counter Value */ |
5120 | #define TIM_CNT_CNT TIM_CNT_CNT_Msk /*!<Counter Value */ |
3095 | 5121 | ||
3096 | /******************* Bit definition for TIM_PSC register *******************/ |
5122 | /******************* Bit definition for TIM_PSC register *******************/ |
- | 5123 | #define TIM_PSC_PSC_Pos (0U) |
|
- | 5124 | #define TIM_PSC_PSC_Msk (0xFFFFU << TIM_PSC_PSC_Pos) /*!< 0x0000FFFF */ |
|
3097 | #define TIM_PSC_PSC ((uint32_t)0x0000FFFF) /*!<Prescaler Value */ |
5125 | #define TIM_PSC_PSC TIM_PSC_PSC_Msk /*!<Prescaler Value */ |
3098 | 5126 | ||
3099 | /******************* Bit definition for TIM_ARR register *******************/ |
5127 | /******************* Bit definition for TIM_ARR register *******************/ |
- | 5128 | #define TIM_ARR_ARR_Pos (0U) |
|
- | 5129 | #define TIM_ARR_ARR_Msk (0xFFFFFFFFU << TIM_ARR_ARR_Pos) /*!< 0xFFFFFFFF */ |
|
3100 | #define TIM_ARR_ARR ((uint32_t)0xFFFFFFFF) /*!<actual auto-reload Value */ |
5130 | #define TIM_ARR_ARR TIM_ARR_ARR_Msk /*!<actual auto-reload Value */ |
3101 | 5131 | ||
3102 | /******************* Bit definition for TIM_RCR register *******************/ |
5132 | /******************* Bit definition for TIM_RCR register *******************/ |
- | 5133 | #define TIM_RCR_REP_Pos (0U) |
|
- | 5134 | #define TIM_RCR_REP_Msk (0xFFU << TIM_RCR_REP_Pos) /*!< 0x000000FF */ |
|
3103 | #define TIM_RCR_REP ((uint32_t)0x000000FF) /*!<Repetition Counter Value */ |
5135 | #define TIM_RCR_REP TIM_RCR_REP_Msk /*!<Repetition Counter Value */ |
3104 | 5136 | ||
3105 | /******************* Bit definition for TIM_CCR1 register ******************/ |
5137 | /******************* Bit definition for TIM_CCR1 register ******************/ |
- | 5138 | #define TIM_CCR1_CCR1_Pos (0U) |
|
- | 5139 | #define TIM_CCR1_CCR1_Msk (0xFFFFU << TIM_CCR1_CCR1_Pos) /*!< 0x0000FFFF */ |
|
3106 | #define TIM_CCR1_CCR1 ((uint32_t)0x0000FFFF) /*!<Capture/Compare 1 Value */ |
5140 | #define TIM_CCR1_CCR1 TIM_CCR1_CCR1_Msk /*!<Capture/Compare 1 Value */ |
3107 | 5141 | ||
3108 | /******************* Bit definition for TIM_CCR2 register ******************/ |
5142 | /******************* Bit definition for TIM_CCR2 register ******************/ |
- | 5143 | #define TIM_CCR2_CCR2_Pos (0U) |
|
- | 5144 | #define TIM_CCR2_CCR2_Msk (0xFFFFU << TIM_CCR2_CCR2_Pos) /*!< 0x0000FFFF */ |
|
3109 | #define TIM_CCR2_CCR2 ((uint32_t)0x0000FFFF) /*!<Capture/Compare 2 Value */ |
5145 | #define TIM_CCR2_CCR2 TIM_CCR2_CCR2_Msk /*!<Capture/Compare 2 Value */ |
3110 | 5146 | ||
3111 | /******************* Bit definition for TIM_CCR3 register ******************/ |
5147 | /******************* Bit definition for TIM_CCR3 register ******************/ |
- | 5148 | #define TIM_CCR3_CCR3_Pos (0U) |
|
- | 5149 | #define TIM_CCR3_CCR3_Msk (0xFFFFU << TIM_CCR3_CCR3_Pos) /*!< 0x0000FFFF */ |
|
3112 | #define TIM_CCR3_CCR3 ((uint32_t)0x0000FFFF) /*!<Capture/Compare 3 Value */ |
5150 | #define TIM_CCR3_CCR3 TIM_CCR3_CCR3_Msk /*!<Capture/Compare 3 Value */ |
3113 | 5151 | ||
3114 | /******************* Bit definition for TIM_CCR4 register ******************/ |
5152 | /******************* Bit definition for TIM_CCR4 register ******************/ |
- | 5153 | #define TIM_CCR4_CCR4_Pos (0U) |
|
- | 5154 | #define TIM_CCR4_CCR4_Msk (0xFFFFU << TIM_CCR4_CCR4_Pos) /*!< 0x0000FFFF */ |
|
3115 | #define TIM_CCR4_CCR4 ((uint32_t)0x0000FFFF) /*!<Capture/Compare 4 Value */ |
5155 | #define TIM_CCR4_CCR4 TIM_CCR4_CCR4_Msk /*!<Capture/Compare 4 Value */ |
3116 | 5156 | ||
3117 | /******************* Bit definition for TIM_BDTR register ******************/ |
5157 | /******************* Bit definition for TIM_BDTR register ******************/ |
- | 5158 | #define TIM_BDTR_DTG_Pos (0U) |
|
- | 5159 | #define TIM_BDTR_DTG_Msk (0xFFU << TIM_BDTR_DTG_Pos) /*!< 0x000000FF */ |
|
3118 | #define TIM_BDTR_DTG ((uint32_t)0x000000FF) /*!<DTG[0:7] bits (Dead-Time Generator set-up) */ |
5160 | #define TIM_BDTR_DTG TIM_BDTR_DTG_Msk /*!<DTG[0:7] bits (Dead-Time Generator set-up) */ |
3119 | #define TIM_BDTR_DTG_0 ((uint32_t)0x00000001) /*!<Bit 0 */ |
5161 | #define TIM_BDTR_DTG_0 (0x01U << TIM_BDTR_DTG_Pos) /*!< 0x00000001 */ |
3120 | #define TIM_BDTR_DTG_1 ((uint32_t)0x00000002) /*!<Bit 1 */ |
5162 | #define TIM_BDTR_DTG_1 (0x02U << TIM_BDTR_DTG_Pos) /*!< 0x00000002 */ |
3121 | #define TIM_BDTR_DTG_2 ((uint32_t)0x00000004) /*!<Bit 2 */ |
5163 | #define TIM_BDTR_DTG_2 (0x04U << TIM_BDTR_DTG_Pos) /*!< 0x00000004 */ |
3122 | #define TIM_BDTR_DTG_3 ((uint32_t)0x00000008) /*!<Bit 3 */ |
5164 | #define TIM_BDTR_DTG_3 (0x08U << TIM_BDTR_DTG_Pos) /*!< 0x00000008 */ |
3123 | #define TIM_BDTR_DTG_4 ((uint32_t)0x00000010) /*!<Bit 4 */ |
5165 | #define TIM_BDTR_DTG_4 (0x10U << TIM_BDTR_DTG_Pos) /*!< 0x00000010 */ |
3124 | #define TIM_BDTR_DTG_5 ((uint32_t)0x00000020) /*!<Bit 5 */ |
5166 | #define TIM_BDTR_DTG_5 (0x20U << TIM_BDTR_DTG_Pos) /*!< 0x00000020 */ |
3125 | #define TIM_BDTR_DTG_6 ((uint32_t)0x00000040) /*!<Bit 6 */ |
5167 | #define TIM_BDTR_DTG_6 (0x40U << TIM_BDTR_DTG_Pos) /*!< 0x00000040 */ |
3126 | #define TIM_BDTR_DTG_7 ((uint32_t)0x00000080) /*!<Bit 7 */ |
5168 | #define TIM_BDTR_DTG_7 (0x80U << TIM_BDTR_DTG_Pos) /*!< 0x00000080 */ |
3127 | 5169 | ||
- | 5170 | #define TIM_BDTR_LOCK_Pos (8U) |
|
- | 5171 | #define TIM_BDTR_LOCK_Msk (0x3U << TIM_BDTR_LOCK_Pos) /*!< 0x00000300 */ |
|
3128 | #define TIM_BDTR_LOCK ((uint32_t)0x00000300) /*!<LOCK[1:0] bits (Lock Configuration) */ |
5172 | #define TIM_BDTR_LOCK TIM_BDTR_LOCK_Msk /*!<LOCK[1:0] bits (Lock Configuration) */ |
3129 | #define TIM_BDTR_LOCK_0 ((uint32_t)0x00000100) /*!<Bit 0 */ |
5173 | #define TIM_BDTR_LOCK_0 (0x1U << TIM_BDTR_LOCK_Pos) /*!< 0x00000100 */ |
3130 | #define TIM_BDTR_LOCK_1 ((uint32_t)0x00000200) /*!<Bit 1 */ |
5174 | #define TIM_BDTR_LOCK_1 (0x2U << TIM_BDTR_LOCK_Pos) /*!< 0x00000200 */ |
3131 | 5175 | ||
- | 5176 | #define TIM_BDTR_OSSI_Pos (10U) |
|
- | 5177 | #define TIM_BDTR_OSSI_Msk (0x1U << TIM_BDTR_OSSI_Pos) /*!< 0x00000400 */ |
|
3132 | #define TIM_BDTR_OSSI ((uint32_t)0x00000400) /*!<Off-State Selection for Idle mode */ |
5178 | #define TIM_BDTR_OSSI TIM_BDTR_OSSI_Msk /*!<Off-State Selection for Idle mode */ |
- | 5179 | #define TIM_BDTR_OSSR_Pos (11U) |
|
- | 5180 | #define TIM_BDTR_OSSR_Msk (0x1U << TIM_BDTR_OSSR_Pos) /*!< 0x00000800 */ |
|
3133 | #define TIM_BDTR_OSSR ((uint32_t)0x00000800) /*!<Off-State Selection for Run mode */ |
5181 | #define TIM_BDTR_OSSR TIM_BDTR_OSSR_Msk /*!<Off-State Selection for Run mode */ |
- | 5182 | #define TIM_BDTR_BKE_Pos (12U) |
|
- | 5183 | #define TIM_BDTR_BKE_Msk (0x1U << TIM_BDTR_BKE_Pos) /*!< 0x00001000 */ |
|
3134 | #define TIM_BDTR_BKE ((uint32_t)0x00001000) /*!<Break enable */ |
5184 | #define TIM_BDTR_BKE TIM_BDTR_BKE_Msk /*!<Break enable */ |
- | 5185 | #define TIM_BDTR_BKP_Pos (13U) |
|
- | 5186 | #define TIM_BDTR_BKP_Msk (0x1U << TIM_BDTR_BKP_Pos) /*!< 0x00002000 */ |
|
3135 | #define TIM_BDTR_BKP ((uint32_t)0x00002000) /*!<Break Polarity */ |
5187 | #define TIM_BDTR_BKP TIM_BDTR_BKP_Msk /*!<Break Polarity */ |
- | 5188 | #define TIM_BDTR_AOE_Pos (14U) |
|
- | 5189 | #define TIM_BDTR_AOE_Msk (0x1U << TIM_BDTR_AOE_Pos) /*!< 0x00004000 */ |
|
3136 | #define TIM_BDTR_AOE ((uint32_t)0x00004000) /*!<Automatic Output enable */ |
5190 | #define TIM_BDTR_AOE TIM_BDTR_AOE_Msk /*!<Automatic Output enable */ |
- | 5191 | #define TIM_BDTR_MOE_Pos (15U) |
|
- | 5192 | #define TIM_BDTR_MOE_Msk (0x1U << TIM_BDTR_MOE_Pos) /*!< 0x00008000 */ |
|
3137 | #define TIM_BDTR_MOE ((uint32_t)0x00008000) /*!<Main Output enable */ |
5193 | #define TIM_BDTR_MOE TIM_BDTR_MOE_Msk /*!<Main Output enable */ |
3138 | 5194 | ||
3139 | /******************* Bit definition for TIM_DCR register *******************/ |
5195 | /******************* Bit definition for TIM_DCR register *******************/ |
- | 5196 | #define TIM_DCR_DBA_Pos (0U) |
|
- | 5197 | #define TIM_DCR_DBA_Msk (0x1FU << TIM_DCR_DBA_Pos) /*!< 0x0000001F */ |
|
3140 | #define TIM_DCR_DBA ((uint32_t)0x0000001F) /*!<DBA[4:0] bits (DMA Base Address) */ |
5198 | #define TIM_DCR_DBA TIM_DCR_DBA_Msk /*!<DBA[4:0] bits (DMA Base Address) */ |
3141 | #define TIM_DCR_DBA_0 ((uint32_t)0x00000001) /*!<Bit 0 */ |
5199 | #define TIM_DCR_DBA_0 (0x01U << TIM_DCR_DBA_Pos) /*!< 0x00000001 */ |
3142 | #define TIM_DCR_DBA_1 ((uint32_t)0x00000002) /*!<Bit 1 */ |
5200 | #define TIM_DCR_DBA_1 (0x02U << TIM_DCR_DBA_Pos) /*!< 0x00000002 */ |
3143 | #define TIM_DCR_DBA_2 ((uint32_t)0x00000004) /*!<Bit 2 */ |
5201 | #define TIM_DCR_DBA_2 (0x04U << TIM_DCR_DBA_Pos) /*!< 0x00000004 */ |
3144 | #define TIM_DCR_DBA_3 ((uint32_t)0x00000008) /*!<Bit 3 */ |
5202 | #define TIM_DCR_DBA_3 (0x08U << TIM_DCR_DBA_Pos) /*!< 0x00000008 */ |
3145 | #define TIM_DCR_DBA_4 ((uint32_t)0x00000010) /*!<Bit 4 */ |
5203 | #define TIM_DCR_DBA_4 (0x10U << TIM_DCR_DBA_Pos) /*!< 0x00000010 */ |
3146 | 5204 | ||
- | 5205 | #define TIM_DCR_DBL_Pos (8U) |
|
- | 5206 | #define TIM_DCR_DBL_Msk (0x1FU << TIM_DCR_DBL_Pos) /*!< 0x00001F00 */ |
|
3147 | #define TIM_DCR_DBL ((uint32_t)0x00001F00) /*!<DBL[4:0] bits (DMA Burst Length) */ |
5207 | #define TIM_DCR_DBL TIM_DCR_DBL_Msk /*!<DBL[4:0] bits (DMA Burst Length) */ |
3148 | #define TIM_DCR_DBL_0 ((uint32_t)0x00000100) /*!<Bit 0 */ |
5208 | #define TIM_DCR_DBL_0 (0x01U << TIM_DCR_DBL_Pos) /*!< 0x00000100 */ |
3149 | #define TIM_DCR_DBL_1 ((uint32_t)0x00000200) /*!<Bit 1 */ |
5209 | #define TIM_DCR_DBL_1 (0x02U << TIM_DCR_DBL_Pos) /*!< 0x00000200 */ |
3150 | #define TIM_DCR_DBL_2 ((uint32_t)0x00000400) /*!<Bit 2 */ |
5210 | #define TIM_DCR_DBL_2 (0x04U << TIM_DCR_DBL_Pos) /*!< 0x00000400 */ |
3151 | #define TIM_DCR_DBL_3 ((uint32_t)0x00000800) /*!<Bit 3 */ |
5211 | #define TIM_DCR_DBL_3 (0x08U << TIM_DCR_DBL_Pos) /*!< 0x00000800 */ |
3152 | #define TIM_DCR_DBL_4 ((uint32_t)0x00001000) /*!<Bit 4 */ |
5212 | #define TIM_DCR_DBL_4 (0x10U << TIM_DCR_DBL_Pos) /*!< 0x00001000 */ |
3153 | 5213 | ||
3154 | /******************* Bit definition for TIM_DMAR register ******************/ |
5214 | /******************* Bit definition for TIM_DMAR register ******************/ |
- | 5215 | #define TIM_DMAR_DMAB_Pos (0U) |
|
- | 5216 | #define TIM_DMAR_DMAB_Msk (0xFFFFU << TIM_DMAR_DMAB_Pos) /*!< 0x0000FFFF */ |
|
3155 | #define TIM_DMAR_DMAB ((uint32_t)0x0000FFFF) /*!<DMA register for burst accesses */ |
5217 | #define TIM_DMAR_DMAB TIM_DMAR_DMAB_Msk /*!<DMA register for burst accesses */ |
3156 | 5218 | ||
3157 | /******************* Bit definition for TIM_OR register ********************/ |
5219 | /******************* Bit definition for TIM_OR register ********************/ |
3158 | 5220 | ||
3159 | /******************************************************************************/ |
5221 | /******************************************************************************/ |
3160 | /* */ |
5222 | /* */ |
3161 | /* Real-Time Clock */ |
5223 | /* Real-Time Clock */ |
3162 | /* */ |
5224 | /* */ |
3163 | /******************************************************************************/ |
5225 | /******************************************************************************/ |
3164 | 5226 | ||
3165 | /******************* Bit definition for RTC_CRH register ********************/ |
5227 | /******************* Bit definition for RTC_CRH register ********************/ |
- | 5228 | #define RTC_CRH_SECIE_Pos (0U) |
|
- | 5229 | #define RTC_CRH_SECIE_Msk (0x1U << RTC_CRH_SECIE_Pos) /*!< 0x00000001 */ |
|
3166 | #define RTC_CRH_SECIE ((uint32_t)0x00000001) /*!< Second Interrupt Enable */ |
5230 | #define RTC_CRH_SECIE RTC_CRH_SECIE_Msk /*!< Second Interrupt Enable */ |
- | 5231 | #define RTC_CRH_ALRIE_Pos (1U) |
|
- | 5232 | #define RTC_CRH_ALRIE_Msk (0x1U << RTC_CRH_ALRIE_Pos) /*!< 0x00000002 */ |
|
3167 | #define RTC_CRH_ALRIE ((uint32_t)0x00000002) /*!< Alarm Interrupt Enable */ |
5233 | #define RTC_CRH_ALRIE RTC_CRH_ALRIE_Msk /*!< Alarm Interrupt Enable */ |
- | 5234 | #define RTC_CRH_OWIE_Pos (2U) |
|
- | 5235 | #define RTC_CRH_OWIE_Msk (0x1U << RTC_CRH_OWIE_Pos) /*!< 0x00000004 */ |
|
3168 | #define RTC_CRH_OWIE ((uint32_t)0x00000004) /*!< OverfloW Interrupt Enable */ |
5236 | #define RTC_CRH_OWIE RTC_CRH_OWIE_Msk /*!< OverfloW Interrupt Enable */ |
3169 | 5237 | ||
3170 | /******************* Bit definition for RTC_CRL register ********************/ |
5238 | /******************* Bit definition for RTC_CRL register ********************/ |
- | 5239 | #define RTC_CRL_SECF_Pos (0U) |
|
- | 5240 | #define RTC_CRL_SECF_Msk (0x1U << RTC_CRL_SECF_Pos) /*!< 0x00000001 */ |
|
3171 | #define RTC_CRL_SECF ((uint32_t)0x00000001) /*!< Second Flag */ |
5241 | #define RTC_CRL_SECF RTC_CRL_SECF_Msk /*!< Second Flag */ |
- | 5242 | #define RTC_CRL_ALRF_Pos (1U) |
|
- | 5243 | #define RTC_CRL_ALRF_Msk (0x1U << RTC_CRL_ALRF_Pos) /*!< 0x00000002 */ |
|
3172 | #define RTC_CRL_ALRF ((uint32_t)0x00000002) /*!< Alarm Flag */ |
5244 | #define RTC_CRL_ALRF RTC_CRL_ALRF_Msk /*!< Alarm Flag */ |
- | 5245 | #define RTC_CRL_OWF_Pos (2U) |
|
- | 5246 | #define RTC_CRL_OWF_Msk (0x1U << RTC_CRL_OWF_Pos) /*!< 0x00000004 */ |
|
3173 | #define RTC_CRL_OWF ((uint32_t)0x00000004) /*!< OverfloW Flag */ |
5247 | #define RTC_CRL_OWF RTC_CRL_OWF_Msk /*!< OverfloW Flag */ |
- | 5248 | #define RTC_CRL_RSF_Pos (3U) |
|
- | 5249 | #define RTC_CRL_RSF_Msk (0x1U << RTC_CRL_RSF_Pos) /*!< 0x00000008 */ |
|
3174 | #define RTC_CRL_RSF ((uint32_t)0x00000008) /*!< Registers Synchronized Flag */ |
5250 | #define RTC_CRL_RSF RTC_CRL_RSF_Msk /*!< Registers Synchronized Flag */ |
- | 5251 | #define RTC_CRL_CNF_Pos (4U) |
|
- | 5252 | #define RTC_CRL_CNF_Msk (0x1U << RTC_CRL_CNF_Pos) /*!< 0x00000010 */ |
|
3175 | #define RTC_CRL_CNF ((uint32_t)0x00000010) /*!< Configuration Flag */ |
5253 | #define RTC_CRL_CNF RTC_CRL_CNF_Msk /*!< Configuration Flag */ |
- | 5254 | #define RTC_CRL_RTOFF_Pos (5U) |
|
- | 5255 | #define RTC_CRL_RTOFF_Msk (0x1U << RTC_CRL_RTOFF_Pos) /*!< 0x00000020 */ |
|
3176 | #define RTC_CRL_RTOFF ((uint32_t)0x00000020) /*!< RTC operation OFF */ |
5256 | #define RTC_CRL_RTOFF RTC_CRL_RTOFF_Msk /*!< RTC operation OFF */ |
3177 | 5257 | ||
3178 | /******************* Bit definition for RTC_PRLH register *******************/ |
5258 | /******************* Bit definition for RTC_PRLH register *******************/ |
- | 5259 | #define RTC_PRLH_PRL_Pos (0U) |
|
- | 5260 | #define RTC_PRLH_PRL_Msk (0xFU << RTC_PRLH_PRL_Pos) /*!< 0x0000000F */ |
|
3179 | #define RTC_PRLH_PRL ((uint32_t)0x0000000F) /*!< RTC Prescaler Reload Value High */ |
5261 | #define RTC_PRLH_PRL RTC_PRLH_PRL_Msk /*!< RTC Prescaler Reload Value High */ |
3180 | 5262 | ||
3181 | /******************* Bit definition for RTC_PRLL register *******************/ |
5263 | /******************* Bit definition for RTC_PRLL register *******************/ |
- | 5264 | #define RTC_PRLL_PRL_Pos (0U) |
|
- | 5265 | #define RTC_PRLL_PRL_Msk (0xFFFFU << RTC_PRLL_PRL_Pos) /*!< 0x0000FFFF */ |
|
3182 | #define RTC_PRLL_PRL ((uint32_t)0x0000FFFF) /*!< RTC Prescaler Reload Value Low */ |
5266 | #define RTC_PRLL_PRL RTC_PRLL_PRL_Msk /*!< RTC Prescaler Reload Value Low */ |
3183 | 5267 | ||
3184 | /******************* Bit definition for RTC_DIVH register *******************/ |
5268 | /******************* Bit definition for RTC_DIVH register *******************/ |
- | 5269 | #define RTC_DIVH_RTC_DIV_Pos (0U) |
|
- | 5270 | #define RTC_DIVH_RTC_DIV_Msk (0xFU << RTC_DIVH_RTC_DIV_Pos) /*!< 0x0000000F */ |
|
3185 | #define RTC_DIVH_RTC_DIV ((uint32_t)0x0000000F) /*!< RTC Clock Divider High */ |
5271 | #define RTC_DIVH_RTC_DIV RTC_DIVH_RTC_DIV_Msk /*!< RTC Clock Divider High */ |
3186 | 5272 | ||
3187 | /******************* Bit definition for RTC_DIVL register *******************/ |
5273 | /******************* Bit definition for RTC_DIVL register *******************/ |
- | 5274 | #define RTC_DIVL_RTC_DIV_Pos (0U) |
|
- | 5275 | #define RTC_DIVL_RTC_DIV_Msk (0xFFFFU << RTC_DIVL_RTC_DIV_Pos) /*!< 0x0000FFFF */ |
|
3188 | #define RTC_DIVL_RTC_DIV ((uint32_t)0x0000FFFF) /*!< RTC Clock Divider Low */ |
5276 | #define RTC_DIVL_RTC_DIV RTC_DIVL_RTC_DIV_Msk /*!< RTC Clock Divider Low */ |
3189 | 5277 | ||
3190 | /******************* Bit definition for RTC_CNTH register *******************/ |
5278 | /******************* Bit definition for RTC_CNTH register *******************/ |
- | 5279 | #define RTC_CNTH_RTC_CNT_Pos (0U) |
|
- | 5280 | #define RTC_CNTH_RTC_CNT_Msk (0xFFFFU << RTC_CNTH_RTC_CNT_Pos) /*!< 0x0000FFFF */ |
|
3191 | #define RTC_CNTH_RTC_CNT ((uint32_t)0x0000FFFF) /*!< RTC Counter High */ |
5281 | #define RTC_CNTH_RTC_CNT RTC_CNTH_RTC_CNT_Msk /*!< RTC Counter High */ |
3192 | 5282 | ||
3193 | /******************* Bit definition for RTC_CNTL register *******************/ |
5283 | /******************* Bit definition for RTC_CNTL register *******************/ |
- | 5284 | #define RTC_CNTL_RTC_CNT_Pos (0U) |
|
- | 5285 | #define RTC_CNTL_RTC_CNT_Msk (0xFFFFU << RTC_CNTL_RTC_CNT_Pos) /*!< 0x0000FFFF */ |
|
3194 | #define RTC_CNTL_RTC_CNT ((uint32_t)0x0000FFFF) /*!< RTC Counter Low */ |
5286 | #define RTC_CNTL_RTC_CNT RTC_CNTL_RTC_CNT_Msk /*!< RTC Counter Low */ |
3195 | 5287 | ||
3196 | /******************* Bit definition for RTC_ALRH register *******************/ |
5288 | /******************* Bit definition for RTC_ALRH register *******************/ |
- | 5289 | #define RTC_ALRH_RTC_ALR_Pos (0U) |
|
- | 5290 | #define RTC_ALRH_RTC_ALR_Msk (0xFFFFU << RTC_ALRH_RTC_ALR_Pos) /*!< 0x0000FFFF */ |
|
3197 | #define RTC_ALRH_RTC_ALR ((uint32_t)0x0000FFFF) /*!< RTC Alarm High */ |
5291 | #define RTC_ALRH_RTC_ALR RTC_ALRH_RTC_ALR_Msk /*!< RTC Alarm High */ |
3198 | 5292 | ||
3199 | /******************* Bit definition for RTC_ALRL register *******************/ |
5293 | /******************* Bit definition for RTC_ALRL register *******************/ |
- | 5294 | #define RTC_ALRL_RTC_ALR_Pos (0U) |
|
- | 5295 | #define RTC_ALRL_RTC_ALR_Msk (0xFFFFU << RTC_ALRL_RTC_ALR_Pos) /*!< 0x0000FFFF */ |
|
3200 | #define RTC_ALRL_RTC_ALR ((uint32_t)0x0000FFFF) /*!< RTC Alarm Low */ |
5296 | #define RTC_ALRL_RTC_ALR RTC_ALRL_RTC_ALR_Msk /*!< RTC Alarm Low */ |
3201 | 5297 | ||
3202 | /******************************************************************************/ |
5298 | /******************************************************************************/ |
3203 | /* */ |
5299 | /* */ |
3204 | /* Independent WATCHDOG (IWDG) */ |
5300 | /* Independent WATCHDOG (IWDG) */ |
3205 | /* */ |
5301 | /* */ |
3206 | /******************************************************************************/ |
5302 | /******************************************************************************/ |
3207 | 5303 | ||
3208 | /******************* Bit definition for IWDG_KR register ********************/ |
5304 | /******************* Bit definition for IWDG_KR register ********************/ |
- | 5305 | #define IWDG_KR_KEY_Pos (0U) |
|
- | 5306 | #define IWDG_KR_KEY_Msk (0xFFFFU << IWDG_KR_KEY_Pos) /*!< 0x0000FFFF */ |
|
3209 | #define IWDG_KR_KEY ((uint32_t)0x0000FFFF) /*!< Key value (write only, read 0000h) */ |
5307 | #define IWDG_KR_KEY IWDG_KR_KEY_Msk /*!< Key value (write only, read 0000h) */ |
3210 | 5308 | ||
3211 | /******************* Bit definition for IWDG_PR register ********************/ |
5309 | /******************* Bit definition for IWDG_PR register ********************/ |
- | 5310 | #define IWDG_PR_PR_Pos (0U) |
|
- | 5311 | #define IWDG_PR_PR_Msk (0x7U << IWDG_PR_PR_Pos) /*!< 0x00000007 */ |
|
3212 | #define IWDG_PR_PR ((uint32_t)0x00000007) /*!< PR[2:0] (Prescaler divider) */ |
5312 | #define IWDG_PR_PR IWDG_PR_PR_Msk /*!< PR[2:0] (Prescaler divider) */ |
3213 | #define IWDG_PR_PR_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
5313 | #define IWDG_PR_PR_0 (0x1U << IWDG_PR_PR_Pos) /*!< 0x00000001 */ |
3214 | #define IWDG_PR_PR_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
5314 | #define IWDG_PR_PR_1 (0x2U << IWDG_PR_PR_Pos) /*!< 0x00000002 */ |
3215 | #define IWDG_PR_PR_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
5315 | #define IWDG_PR_PR_2 (0x4U << IWDG_PR_PR_Pos) /*!< 0x00000004 */ |
3216 | 5316 | ||
3217 | /******************* Bit definition for IWDG_RLR register *******************/ |
5317 | /******************* Bit definition for IWDG_RLR register *******************/ |
- | 5318 | #define IWDG_RLR_RL_Pos (0U) |
|
- | 5319 | #define IWDG_RLR_RL_Msk (0xFFFU << IWDG_RLR_RL_Pos) /*!< 0x00000FFF */ |
|
3218 | #define IWDG_RLR_RL ((uint32_t)0x00000FFF) /*!< Watchdog counter reload value */ |
5320 | #define IWDG_RLR_RL IWDG_RLR_RL_Msk /*!< Watchdog counter reload value */ |
3219 | 5321 | ||
3220 | /******************* Bit definition for IWDG_SR register ********************/ |
5322 | /******************* Bit definition for IWDG_SR register ********************/ |
- | 5323 | #define IWDG_SR_PVU_Pos (0U) |
|
- | 5324 | #define IWDG_SR_PVU_Msk (0x1U << IWDG_SR_PVU_Pos) /*!< 0x00000001 */ |
|
3221 | #define IWDG_SR_PVU ((uint32_t)0x00000001) /*!< Watchdog prescaler value update */ |
5325 | #define IWDG_SR_PVU IWDG_SR_PVU_Msk /*!< Watchdog prescaler value update */ |
- | 5326 | #define IWDG_SR_RVU_Pos (1U) |
|
- | 5327 | #define IWDG_SR_RVU_Msk (0x1U << IWDG_SR_RVU_Pos) /*!< 0x00000002 */ |
|
3222 | #define IWDG_SR_RVU ((uint32_t)0x00000002) /*!< Watchdog counter reload value update */ |
5328 | #define IWDG_SR_RVU IWDG_SR_RVU_Msk /*!< Watchdog counter reload value update */ |
3223 | 5329 | ||
3224 | /******************************************************************************/ |
5330 | /******************************************************************************/ |
3225 | /* */ |
5331 | /* */ |
3226 | /* Window WATCHDOG */ |
5332 | /* Window WATCHDOG (WWDG) */ |
3227 | /* */ |
5333 | /* */ |
3228 | /******************************************************************************/ |
5334 | /******************************************************************************/ |
3229 | 5335 | ||
3230 | /******************* Bit definition for WWDG_CR register ********************/ |
5336 | /******************* Bit definition for WWDG_CR register ********************/ |
- | 5337 | #define WWDG_CR_T_Pos (0U) |
|
- | 5338 | #define WWDG_CR_T_Msk (0x7FU << WWDG_CR_T_Pos) /*!< 0x0000007F */ |
|
3231 | #define WWDG_CR_T ((uint32_t)0x0000007F) /*!< T[6:0] bits (7-Bit counter (MSB to LSB)) */ |
5339 | #define WWDG_CR_T WWDG_CR_T_Msk /*!< T[6:0] bits (7-Bit counter (MSB to LSB)) */ |
3232 | #define WWDG_CR_T0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
5340 | #define WWDG_CR_T_0 (0x01U << WWDG_CR_T_Pos) /*!< 0x00000001 */ |
3233 | #define WWDG_CR_T1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
5341 | #define WWDG_CR_T_1 (0x02U << WWDG_CR_T_Pos) /*!< 0x00000002 */ |
3234 | #define WWDG_CR_T2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
5342 | #define WWDG_CR_T_2 (0x04U << WWDG_CR_T_Pos) /*!< 0x00000004 */ |
3235 | #define WWDG_CR_T3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
5343 | #define WWDG_CR_T_3 (0x08U << WWDG_CR_T_Pos) /*!< 0x00000008 */ |
3236 | #define WWDG_CR_T4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
5344 | #define WWDG_CR_T_4 (0x10U << WWDG_CR_T_Pos) /*!< 0x00000010 */ |
3237 | #define WWDG_CR_T5 ((uint32_t)0x00000020) /*!< Bit 5 */ |
5345 | #define WWDG_CR_T_5 (0x20U << WWDG_CR_T_Pos) /*!< 0x00000020 */ |
3238 | #define WWDG_CR_T6 ((uint32_t)0x00000040) /*!< Bit 6 */ |
5346 | #define WWDG_CR_T_6 (0x40U << WWDG_CR_T_Pos) /*!< 0x00000040 */ |
- | 5347 | ||
- | 5348 | /* Legacy defines */ |
|
- | 5349 | #define WWDG_CR_T0 WWDG_CR_T_0 |
|
- | 5350 | #define WWDG_CR_T1 WWDG_CR_T_1 |
|
- | 5351 | #define WWDG_CR_T2 WWDG_CR_T_2 |
|
- | 5352 | #define WWDG_CR_T3 WWDG_CR_T_3 |
|
- | 5353 | #define WWDG_CR_T4 WWDG_CR_T_4 |
|
- | 5354 | #define WWDG_CR_T5 WWDG_CR_T_5 |
|
- | 5355 | #define WWDG_CR_T6 WWDG_CR_T_6 |
|
3239 | 5356 | ||
- | 5357 | #define WWDG_CR_WDGA_Pos (7U) |
|
- | 5358 | #define WWDG_CR_WDGA_Msk (0x1U << WWDG_CR_WDGA_Pos) /*!< 0x00000080 */ |
|
3240 | #define WWDG_CR_WDGA ((uint32_t)0x00000080) /*!< Activation bit */ |
5359 | #define WWDG_CR_WDGA WWDG_CR_WDGA_Msk /*!< Activation bit */ |
3241 | 5360 | ||
3242 | /******************* Bit definition for WWDG_CFR register *******************/ |
5361 | /******************* Bit definition for WWDG_CFR register *******************/ |
- | 5362 | #define WWDG_CFR_W_Pos (0U) |
|
- | 5363 | #define WWDG_CFR_W_Msk (0x7FU << WWDG_CFR_W_Pos) /*!< 0x0000007F */ |
|
3243 | #define WWDG_CFR_W ((uint32_t)0x0000007F) /*!< W[6:0] bits (7-bit window value) */ |
5364 | #define WWDG_CFR_W WWDG_CFR_W_Msk /*!< W[6:0] bits (7-bit window value) */ |
3244 | #define WWDG_CFR_W0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
5365 | #define WWDG_CFR_W_0 (0x01U << WWDG_CFR_W_Pos) /*!< 0x00000001 */ |
3245 | #define WWDG_CFR_W1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
5366 | #define WWDG_CFR_W_1 (0x02U << WWDG_CFR_W_Pos) /*!< 0x00000002 */ |
3246 | #define WWDG_CFR_W2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
5367 | #define WWDG_CFR_W_2 (0x04U << WWDG_CFR_W_Pos) /*!< 0x00000004 */ |
3247 | #define WWDG_CFR_W3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
5368 | #define WWDG_CFR_W_3 (0x08U << WWDG_CFR_W_Pos) /*!< 0x00000008 */ |
3248 | #define WWDG_CFR_W4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
5369 | #define WWDG_CFR_W_4 (0x10U << WWDG_CFR_W_Pos) /*!< 0x00000010 */ |
3249 | #define WWDG_CFR_W5 ((uint32_t)0x00000020) /*!< Bit 5 */ |
5370 | #define WWDG_CFR_W_5 (0x20U << WWDG_CFR_W_Pos) /*!< 0x00000020 */ |
3250 | #define WWDG_CFR_W6 ((uint32_t)0x00000040) /*!< Bit 6 */ |
5371 | #define WWDG_CFR_W_6 (0x40U << WWDG_CFR_W_Pos) /*!< 0x00000040 */ |
3251 | 5372 | ||
- | 5373 | /* Legacy defines */ |
|
- | 5374 | #define WWDG_CFR_W0 WWDG_CFR_W_0 |
|
- | 5375 | #define WWDG_CFR_W1 WWDG_CFR_W_1 |
|
- | 5376 | #define WWDG_CFR_W2 WWDG_CFR_W_2 |
|
- | 5377 | #define WWDG_CFR_W3 WWDG_CFR_W_3 |
|
- | 5378 | #define WWDG_CFR_W4 WWDG_CFR_W_4 |
|
- | 5379 | #define WWDG_CFR_W5 WWDG_CFR_W_5 |
|
- | 5380 | #define WWDG_CFR_W6 WWDG_CFR_W_6 |
|
- | 5381 | ||
- | 5382 | #define WWDG_CFR_WDGTB_Pos (7U) |
|
- | 5383 | #define WWDG_CFR_WDGTB_Msk (0x3U << WWDG_CFR_WDGTB_Pos) /*!< 0x00000180 */ |
|
3252 | #define WWDG_CFR_WDGTB ((uint32_t)0x00000180) /*!< WDGTB[1:0] bits (Timer Base) */ |
5384 | #define WWDG_CFR_WDGTB WWDG_CFR_WDGTB_Msk /*!< WDGTB[1:0] bits (Timer Base) */ |
3253 | #define WWDG_CFR_WDGTB0 ((uint32_t)0x00000080) /*!< Bit 0 */ |
5385 | #define WWDG_CFR_WDGTB_0 (0x1U << WWDG_CFR_WDGTB_Pos) /*!< 0x00000080 */ |
3254 | #define WWDG_CFR_WDGTB1 ((uint32_t)0x00000100) /*!< Bit 1 */ |
5386 | #define WWDG_CFR_WDGTB_1 (0x2U << WWDG_CFR_WDGTB_Pos) /*!< 0x00000100 */ |
- | 5387 | ||
- | 5388 | /* Legacy defines */ |
|
- | 5389 | #define WWDG_CFR_WDGTB0 WWDG_CFR_WDGTB_0 |
|
- | 5390 | #define WWDG_CFR_WDGTB1 WWDG_CFR_WDGTB_1 |
|
3255 | 5391 | ||
- | 5392 | #define WWDG_CFR_EWI_Pos (9U) |
|
- | 5393 | #define WWDG_CFR_EWI_Msk (0x1U << WWDG_CFR_EWI_Pos) /*!< 0x00000200 */ |
|
3256 | #define WWDG_CFR_EWI ((uint32_t)0x00000200) /*!< Early Wakeup Interrupt */ |
5394 | #define WWDG_CFR_EWI WWDG_CFR_EWI_Msk /*!< Early Wakeup Interrupt */ |
3257 | 5395 | ||
3258 | /******************* Bit definition for WWDG_SR register ********************/ |
5396 | /******************* Bit definition for WWDG_SR register ********************/ |
- | 5397 | #define WWDG_SR_EWIF_Pos (0U) |
|
- | 5398 | #define WWDG_SR_EWIF_Msk (0x1U << WWDG_SR_EWIF_Pos) /*!< 0x00000001 */ |
|
3259 | #define WWDG_SR_EWIF ((uint32_t)0x00000001) /*!< Early Wakeup Interrupt Flag */ |
5399 | #define WWDG_SR_EWIF WWDG_SR_EWIF_Msk /*!< Early Wakeup Interrupt Flag */ |
3260 | 5400 | ||
3261 | /******************************************************************************/ |
5401 | /******************************************************************************/ |
3262 | /* */ |
5402 | /* */ |
3263 | /* Flexible Static Memory Controller */ |
5403 | /* Flexible Static Memory Controller */ |
3264 | /* */ |
5404 | /* */ |
3265 | /******************************************************************************/ |
5405 | /******************************************************************************/ |
3266 | 5406 | ||
3267 | /****************** Bit definition for FSMC_BCRx (x=1..4) register **********/ |
5407 | /****************** Bit definition for FSMC_BCRx (x=1..4) register **********/ |
- | 5408 | #define FSMC_BCRx_MBKEN_Pos (0U) |
|
- | 5409 | #define FSMC_BCRx_MBKEN_Msk (0x1U << FSMC_BCRx_MBKEN_Pos) /*!< 0x00000001 */ |
|
3268 | #define FSMC_BCRx_MBKEN ((uint32_t)0x00000001) /*!< Memory bank enable bit */ |
5410 | #define FSMC_BCRx_MBKEN FSMC_BCRx_MBKEN_Msk /*!< Memory bank enable bit */ |
- | 5411 | #define FSMC_BCRx_MUXEN_Pos (1U) |
|
- | 5412 | #define FSMC_BCRx_MUXEN_Msk (0x1U << FSMC_BCRx_MUXEN_Pos) /*!< 0x00000002 */ |
|
3269 | #define FSMC_BCRx_MUXEN ((uint32_t)0x00000002) /*!< Address/data multiplexing enable bit */ |
5413 | #define FSMC_BCRx_MUXEN FSMC_BCRx_MUXEN_Msk /*!< Address/data multiplexing enable bit */ |
3270 | 5414 | ||
- | 5415 | #define FSMC_BCRx_MTYP_Pos (2U) |
|
- | 5416 | #define FSMC_BCRx_MTYP_Msk (0x3U << FSMC_BCRx_MTYP_Pos) /*!< 0x0000000C */ |
|
3271 | #define FSMC_BCRx_MTYP ((uint32_t)0x0000000C) /*!< MTYP[1:0] bits (Memory type) */ |
5417 | #define FSMC_BCRx_MTYP FSMC_BCRx_MTYP_Msk /*!< MTYP[1:0] bits (Memory type) */ |
3272 | #define FSMC_BCRx_MTYP_0 ((uint32_t)0x00000004) /*!< Bit 0 */ |
5418 | #define FSMC_BCRx_MTYP_0 (0x1U << FSMC_BCRx_MTYP_Pos) /*!< 0x00000004 */ |
3273 | #define FSMC_BCRx_MTYP_1 ((uint32_t)0x00000008) /*!< Bit 1 */ |
5419 | #define FSMC_BCRx_MTYP_1 (0x2U << FSMC_BCRx_MTYP_Pos) /*!< 0x00000008 */ |
3274 | 5420 | ||
- | 5421 | #define FSMC_BCRx_MWID_Pos (4U) |
|
- | 5422 | #define FSMC_BCRx_MWID_Msk (0x3U << FSMC_BCRx_MWID_Pos) /*!< 0x00000030 */ |
|
3275 | #define FSMC_BCRx_MWID ((uint32_t)0x00000030) /*!< MWID[1:0] bits (Memory data bus width) */ |
5423 | #define FSMC_BCRx_MWID FSMC_BCRx_MWID_Msk /*!< MWID[1:0] bits (Memory data bus width) */ |
3276 | #define FSMC_BCRx_MWID_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
5424 | #define FSMC_BCRx_MWID_0 (0x1U << FSMC_BCRx_MWID_Pos) /*!< 0x00000010 */ |
3277 | #define FSMC_BCRx_MWID_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
5425 | #define FSMC_BCRx_MWID_1 (0x2U << FSMC_BCRx_MWID_Pos) /*!< 0x00000020 */ |
3278 | 5426 | ||
- | 5427 | #define FSMC_BCRx_FACCEN_Pos (6U) |
|
- | 5428 | #define FSMC_BCRx_FACCEN_Msk (0x1U << FSMC_BCRx_FACCEN_Pos) /*!< 0x00000040 */ |
|
3279 | #define FSMC_BCRx_FACCEN ((uint32_t)0x00000040) /*!< Flash access enable */ |
5429 | #define FSMC_BCRx_FACCEN FSMC_BCRx_FACCEN_Msk /*!< Flash access enable */ |
- | 5430 | #define FSMC_BCRx_BURSTEN_Pos (8U) |
|
- | 5431 | #define FSMC_BCRx_BURSTEN_Msk (0x1U << FSMC_BCRx_BURSTEN_Pos) /*!< 0x00000100 */ |
|
3280 | #define FSMC_BCRx_BURSTEN ((uint32_t)0x00000100) /*!< Burst enable bit */ |
5432 | #define FSMC_BCRx_BURSTEN FSMC_BCRx_BURSTEN_Msk /*!< Burst enable bit */ |
- | 5433 | #define FSMC_BCRx_WAITPOL_Pos (9U) |
|
- | 5434 | #define FSMC_BCRx_WAITPOL_Msk (0x1U << FSMC_BCRx_WAITPOL_Pos) /*!< 0x00000200 */ |
|
3281 | #define FSMC_BCRx_WAITPOL ((uint32_t)0x00000200) /*!< Wait signal polarity bit */ |
5435 | #define FSMC_BCRx_WAITPOL FSMC_BCRx_WAITPOL_Msk /*!< Wait signal polarity bit */ |
- | 5436 | #define FSMC_BCRx_WRAPMOD_Pos (10U) |
|
- | 5437 | #define FSMC_BCRx_WRAPMOD_Msk (0x1U << FSMC_BCRx_WRAPMOD_Pos) /*!< 0x00000400 */ |
|
3282 | #define FSMC_BCRx_WRAPMOD ((uint32_t)0x00000400) /*!< Wrapped burst mode support */ |
5438 | #define FSMC_BCRx_WRAPMOD FSMC_BCRx_WRAPMOD_Msk /*!< Wrapped burst mode support */ |
- | 5439 | #define FSMC_BCRx_WAITCFG_Pos (11U) |
|
- | 5440 | #define FSMC_BCRx_WAITCFG_Msk (0x1U << FSMC_BCRx_WAITCFG_Pos) /*!< 0x00000800 */ |
|
3283 | #define FSMC_BCRx_WAITCFG ((uint32_t)0x00000800) /*!< Wait timing configuration */ |
5441 | #define FSMC_BCRx_WAITCFG FSMC_BCRx_WAITCFG_Msk /*!< Wait timing configuration */ |
- | 5442 | #define FSMC_BCRx_WREN_Pos (12U) |
|
- | 5443 | #define FSMC_BCRx_WREN_Msk (0x1U << FSMC_BCRx_WREN_Pos) /*!< 0x00001000 */ |
|
3284 | #define FSMC_BCRx_WREN ((uint32_t)0x00001000) /*!< Write enable bit */ |
5444 | #define FSMC_BCRx_WREN FSMC_BCRx_WREN_Msk /*!< Write enable bit */ |
- | 5445 | #define FSMC_BCRx_WAITEN_Pos (13U) |
|
- | 5446 | #define FSMC_BCRx_WAITEN_Msk (0x1U << FSMC_BCRx_WAITEN_Pos) /*!< 0x00002000 */ |
|
3285 | #define FSMC_BCRx_WAITEN ((uint32_t)0x00002000) /*!< Wait enable bit */ |
5447 | #define FSMC_BCRx_WAITEN FSMC_BCRx_WAITEN_Msk /*!< Wait enable bit */ |
- | 5448 | #define FSMC_BCRx_EXTMOD_Pos (14U) |
|
- | 5449 | #define FSMC_BCRx_EXTMOD_Msk (0x1U << FSMC_BCRx_EXTMOD_Pos) /*!< 0x00004000 */ |
|
3286 | #define FSMC_BCRx_EXTMOD ((uint32_t)0x00004000) /*!< Extended mode enable */ |
5450 | #define FSMC_BCRx_EXTMOD FSMC_BCRx_EXTMOD_Msk /*!< Extended mode enable */ |
- | 5451 | #define FSMC_BCRx_ASYNCWAIT_Pos (15U) |
|
- | 5452 | #define FSMC_BCRx_ASYNCWAIT_Msk (0x1U << FSMC_BCRx_ASYNCWAIT_Pos) /*!< 0x00008000 */ |
|
3287 | #define FSMC_BCRx_ASYNCWAIT ((uint32_t)0x00008000) /*!< Asynchronous wait */ |
5453 | #define FSMC_BCRx_ASYNCWAIT FSMC_BCRx_ASYNCWAIT_Msk /*!< Asynchronous wait */ |
- | 5454 | #define FSMC_BCRx_CBURSTRW_Pos (19U) |
|
- | 5455 | #define FSMC_BCRx_CBURSTRW_Msk (0x1U << FSMC_BCRx_CBURSTRW_Pos) /*!< 0x00080000 */ |
|
3288 | #define FSMC_BCRx_CBURSTRW ((uint32_t)0x00080000) /*!< Write burst enable */ |
5456 | #define FSMC_BCRx_CBURSTRW FSMC_BCRx_CBURSTRW_Msk /*!< Write burst enable */ |
3289 | 5457 | ||
3290 | /****************** Bit definition for FSMC_BTRx (x=1..4) register ******/ |
5458 | /****************** Bit definition for FSMC_BTRx (x=1..4) register ******/ |
- | 5459 | #define FSMC_BTRx_ADDSET_Pos (0U) |
|
- | 5460 | #define FSMC_BTRx_ADDSET_Msk (0xFU << FSMC_BTRx_ADDSET_Pos) /*!< 0x0000000F */ |
|
3291 | #define FSMC_BTRx_ADDSET ((uint32_t)0x0000000F) /*!< ADDSET[3:0] bits (Address setup phase duration) */ |
5461 | #define FSMC_BTRx_ADDSET FSMC_BTRx_ADDSET_Msk /*!< ADDSET[3:0] bits (Address setup phase duration) */ |
3292 | #define FSMC_BTRx_ADDSET_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
5462 | #define FSMC_BTRx_ADDSET_0 (0x1U << FSMC_BTRx_ADDSET_Pos) /*!< 0x00000001 */ |
3293 | #define FSMC_BTRx_ADDSET_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
5463 | #define FSMC_BTRx_ADDSET_1 (0x2U << FSMC_BTRx_ADDSET_Pos) /*!< 0x00000002 */ |
3294 | #define FSMC_BTRx_ADDSET_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
5464 | #define FSMC_BTRx_ADDSET_2 (0x4U << FSMC_BTRx_ADDSET_Pos) /*!< 0x00000004 */ |
3295 | #define FSMC_BTRx_ADDSET_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
5465 | #define FSMC_BTRx_ADDSET_3 (0x8U << FSMC_BTRx_ADDSET_Pos) /*!< 0x00000008 */ |
3296 | 5466 | ||
- | 5467 | #define FSMC_BTRx_ADDHLD_Pos (4U) |
|
- | 5468 | #define FSMC_BTRx_ADDHLD_Msk (0xFU << FSMC_BTRx_ADDHLD_Pos) /*!< 0x000000F0 */ |
|
3297 | #define FSMC_BTRx_ADDHLD ((uint32_t)0x000000F0) /*!< ADDHLD[3:0] bits (Address-hold phase duration) */ |
5469 | #define FSMC_BTRx_ADDHLD FSMC_BTRx_ADDHLD_Msk /*!< ADDHLD[3:0] bits (Address-hold phase duration) */ |
3298 | #define FSMC_BTRx_ADDHLD_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
5470 | #define FSMC_BTRx_ADDHLD_0 (0x1U << FSMC_BTRx_ADDHLD_Pos) /*!< 0x00000010 */ |
3299 | #define FSMC_BTRx_ADDHLD_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
5471 | #define FSMC_BTRx_ADDHLD_1 (0x2U << FSMC_BTRx_ADDHLD_Pos) /*!< 0x00000020 */ |
3300 | #define FSMC_BTRx_ADDHLD_2 ((uint32_t)0x00000040) /*!< Bit 2 */ |
5472 | #define FSMC_BTRx_ADDHLD_2 (0x4U << FSMC_BTRx_ADDHLD_Pos) /*!< 0x00000040 */ |
3301 | #define FSMC_BTRx_ADDHLD_3 ((uint32_t)0x00000080) /*!< Bit 3 */ |
5473 | #define FSMC_BTRx_ADDHLD_3 (0x8U << FSMC_BTRx_ADDHLD_Pos) /*!< 0x00000080 */ |
3302 | 5474 | ||
- | 5475 | #define FSMC_BTRx_DATAST_Pos (8U) |
|
- | 5476 | #define FSMC_BTRx_DATAST_Msk (0xFFU << FSMC_BTRx_DATAST_Pos) /*!< 0x0000FF00 */ |
|
3303 | #define FSMC_BTRx_DATAST ((uint32_t)0x0000FF00) /*!< DATAST [3:0] bits (Data-phase duration) */ |
5477 | #define FSMC_BTRx_DATAST FSMC_BTRx_DATAST_Msk /*!< DATAST [3:0] bits (Data-phase duration) */ |
3304 | #define FSMC_BTRx_DATAST_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
5478 | #define FSMC_BTRx_DATAST_0 (0x01U << FSMC_BTRx_DATAST_Pos) /*!< 0x00000100 */ |
3305 | #define FSMC_BTRx_DATAST_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
5479 | #define FSMC_BTRx_DATAST_1 (0x02U << FSMC_BTRx_DATAST_Pos) /*!< 0x00000200 */ |
3306 | #define FSMC_BTRx_DATAST_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
5480 | #define FSMC_BTRx_DATAST_2 (0x04U << FSMC_BTRx_DATAST_Pos) /*!< 0x00000400 */ |
3307 | #define FSMC_BTRx_DATAST_3 ((uint32_t)0x00000800) /*!< Bit 3 */ |
5481 | #define FSMC_BTRx_DATAST_3 (0x08U << FSMC_BTRx_DATAST_Pos) /*!< 0x00000800 */ |
3308 | #define FSMC_BTRx_DATAST_4 ((uint32_t)0x00001000) /*!< Bit 4 */ |
5482 | #define FSMC_BTRx_DATAST_4 (0x10U << FSMC_BTRx_DATAST_Pos) /*!< 0x00001000 */ |
3309 | #define FSMC_BTRx_DATAST_5 ((uint32_t)0x00002000) /*!< Bit 5 */ |
5483 | #define FSMC_BTRx_DATAST_5 (0x20U << FSMC_BTRx_DATAST_Pos) /*!< 0x00002000 */ |
3310 | #define FSMC_BTRx_DATAST_6 ((uint32_t)0x00004000) /*!< Bit 6 */ |
5484 | #define FSMC_BTRx_DATAST_6 (0x40U << FSMC_BTRx_DATAST_Pos) /*!< 0x00004000 */ |
3311 | #define FSMC_BTRx_DATAST_7 ((uint32_t)0x00008000) /*!< Bit 7 */ |
5485 | #define FSMC_BTRx_DATAST_7 (0x80U << FSMC_BTRx_DATAST_Pos) /*!< 0x00008000 */ |
3312 | 5486 | ||
- | 5487 | #define FSMC_BTRx_BUSTURN_Pos (16U) |
|
- | 5488 | #define FSMC_BTRx_BUSTURN_Msk (0xFU << FSMC_BTRx_BUSTURN_Pos) /*!< 0x000F0000 */ |
|
3313 | #define FSMC_BTRx_BUSTURN ((uint32_t)0x000F0000) /*!< BUSTURN[3:0] bits (Bus turnaround phase duration) */ |
5489 | #define FSMC_BTRx_BUSTURN FSMC_BTRx_BUSTURN_Msk /*!< BUSTURN[3:0] bits (Bus turnaround phase duration) */ |
3314 | #define FSMC_BTRx_BUSTURN_0 ((uint32_t)0x00010000) /*!< Bit 0 */ |
5490 | #define FSMC_BTRx_BUSTURN_0 (0x1U << FSMC_BTRx_BUSTURN_Pos) /*!< 0x00010000 */ |
3315 | #define FSMC_BTRx_BUSTURN_1 ((uint32_t)0x00020000) /*!< Bit 1 */ |
5491 | #define FSMC_BTRx_BUSTURN_1 (0x2U << FSMC_BTRx_BUSTURN_Pos) /*!< 0x00020000 */ |
3316 | #define FSMC_BTRx_BUSTURN_2 ((uint32_t)0x00040000) /*!< Bit 2 */ |
5492 | #define FSMC_BTRx_BUSTURN_2 (0x4U << FSMC_BTRx_BUSTURN_Pos) /*!< 0x00040000 */ |
3317 | #define FSMC_BTRx_BUSTURN_3 ((uint32_t)0x00080000) /*!< Bit 3 */ |
5493 | #define FSMC_BTRx_BUSTURN_3 (0x8U << FSMC_BTRx_BUSTURN_Pos) /*!< 0x00080000 */ |
3318 | 5494 | ||
- | 5495 | #define FSMC_BTRx_CLKDIV_Pos (20U) |
|
- | 5496 | #define FSMC_BTRx_CLKDIV_Msk (0xFU << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00F00000 */ |
|
3319 | #define FSMC_BTRx_CLKDIV ((uint32_t)0x00F00000) /*!< CLKDIV[3:0] bits (Clock divide ratio) */ |
5497 | #define FSMC_BTRx_CLKDIV FSMC_BTRx_CLKDIV_Msk /*!< CLKDIV[3:0] bits (Clock divide ratio) */ |
3320 | #define FSMC_BTRx_CLKDIV_0 ((uint32_t)0x00100000) /*!< Bit 0 */ |
5498 | #define FSMC_BTRx_CLKDIV_0 (0x1U << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00100000 */ |
3321 | #define FSMC_BTRx_CLKDIV_1 ((uint32_t)0x00200000) /*!< Bit 1 */ |
5499 | #define FSMC_BTRx_CLKDIV_1 (0x2U << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00200000 */ |
3322 | #define FSMC_BTRx_CLKDIV_2 ((uint32_t)0x00400000) /*!< Bit 2 */ |
5500 | #define FSMC_BTRx_CLKDIV_2 (0x4U << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00400000 */ |
3323 | #define FSMC_BTRx_CLKDIV_3 ((uint32_t)0x00800000) /*!< Bit 3 */ |
5501 | #define FSMC_BTRx_CLKDIV_3 (0x8U << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00800000 */ |
3324 | 5502 | ||
- | 5503 | #define FSMC_BTRx_DATLAT_Pos (24U) |
|
- | 5504 | #define FSMC_BTRx_DATLAT_Msk (0xFU << FSMC_BTRx_DATLAT_Pos) /*!< 0x0F000000 */ |
|
3325 | #define FSMC_BTRx_DATLAT ((uint32_t)0x0F000000) /*!< DATLA[3:0] bits (Data latency) */ |
5505 | #define FSMC_BTRx_DATLAT FSMC_BTRx_DATLAT_Msk /*!< DATLA[3:0] bits (Data latency) */ |
3326 | #define FSMC_BTRx_DATLAT_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
5506 | #define FSMC_BTRx_DATLAT_0 (0x1U << FSMC_BTRx_DATLAT_Pos) /*!< 0x01000000 */ |
3327 | #define FSMC_BTRx_DATLAT_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
5507 | #define FSMC_BTRx_DATLAT_1 (0x2U << FSMC_BTRx_DATLAT_Pos) /*!< 0x02000000 */ |
3328 | #define FSMC_BTRx_DATLAT_2 ((uint32_t)0x04000000) /*!< Bit 2 */ |
5508 | #define FSMC_BTRx_DATLAT_2 (0x4U << FSMC_BTRx_DATLAT_Pos) /*!< 0x04000000 */ |
3329 | #define FSMC_BTRx_DATLAT_3 ((uint32_t)0x08000000) /*!< Bit 3 */ |
5509 | #define FSMC_BTRx_DATLAT_3 (0x8U << FSMC_BTRx_DATLAT_Pos) /*!< 0x08000000 */ |
3330 | 5510 | ||
- | 5511 | #define FSMC_BTRx_ACCMOD_Pos (28U) |
|
- | 5512 | #define FSMC_BTRx_ACCMOD_Msk (0x3U << FSMC_BTRx_ACCMOD_Pos) /*!< 0x30000000 */ |
|
3331 | #define FSMC_BTRx_ACCMOD ((uint32_t)0x30000000) /*!< ACCMOD[1:0] bits (Access mode) */ |
5513 | #define FSMC_BTRx_ACCMOD FSMC_BTRx_ACCMOD_Msk /*!< ACCMOD[1:0] bits (Access mode) */ |
3332 | #define FSMC_BTRx_ACCMOD_0 ((uint32_t)0x10000000) /*!< Bit 0 */ |
5514 | #define FSMC_BTRx_ACCMOD_0 (0x1U << FSMC_BTRx_ACCMOD_Pos) /*!< 0x10000000 */ |
3333 | #define FSMC_BTRx_ACCMOD_1 ((uint32_t)0x20000000) /*!< Bit 1 */ |
5515 | #define FSMC_BTRx_ACCMOD_1 (0x2U << FSMC_BTRx_ACCMOD_Pos) /*!< 0x20000000 */ |
3334 | 5516 | ||
3335 | /****************** Bit definition for FSMC_BWTRx (x=1..4) register ******/ |
5517 | /****************** Bit definition for FSMC_BWTRx (x=1..4) register ******/ |
- | 5518 | #define FSMC_BWTRx_ADDSET_Pos (0U) |
|
- | 5519 | #define FSMC_BWTRx_ADDSET_Msk (0xFU << FSMC_BWTRx_ADDSET_Pos) /*!< 0x0000000F */ |
|
3336 | #define FSMC_BWTRx_ADDSET ((uint32_t)0x0000000F) /*!< ADDSET[3:0] bits (Address setup phase duration) */ |
5520 | #define FSMC_BWTRx_ADDSET FSMC_BWTRx_ADDSET_Msk /*!< ADDSET[3:0] bits (Address setup phase duration) */ |
3337 | #define FSMC_BWTRx_ADDSET_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
5521 | #define FSMC_BWTRx_ADDSET_0 (0x1U << FSMC_BWTRx_ADDSET_Pos) /*!< 0x00000001 */ |
3338 | #define FSMC_BWTRx_ADDSET_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
5522 | #define FSMC_BWTRx_ADDSET_1 (0x2U << FSMC_BWTRx_ADDSET_Pos) /*!< 0x00000002 */ |
3339 | #define FSMC_BWTRx_ADDSET_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
5523 | #define FSMC_BWTRx_ADDSET_2 (0x4U << FSMC_BWTRx_ADDSET_Pos) /*!< 0x00000004 */ |
3340 | #define FSMC_BWTRx_ADDSET_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
5524 | #define FSMC_BWTRx_ADDSET_3 (0x8U << FSMC_BWTRx_ADDSET_Pos) /*!< 0x00000008 */ |
3341 | 5525 | ||
- | 5526 | #define FSMC_BWTRx_ADDHLD_Pos (4U) |
|
- | 5527 | #define FSMC_BWTRx_ADDHLD_Msk (0xFU << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x000000F0 */ |
|
3342 | #define FSMC_BWTRx_ADDHLD ((uint32_t)0x000000F0) /*!< ADDHLD[3:0] bits (Address-hold phase duration) */ |
5528 | #define FSMC_BWTRx_ADDHLD FSMC_BWTRx_ADDHLD_Msk /*!< ADDHLD[3:0] bits (Address-hold phase duration) */ |
3343 | #define FSMC_BWTRx_ADDHLD_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
5529 | #define FSMC_BWTRx_ADDHLD_0 (0x1U << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x00000010 */ |
3344 | #define FSMC_BWTRx_ADDHLD_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
5530 | #define FSMC_BWTRx_ADDHLD_1 (0x2U << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x00000020 */ |
3345 | #define FSMC_BWTRx_ADDHLD_2 ((uint32_t)0x00000040) /*!< Bit 2 */ |
5531 | #define FSMC_BWTRx_ADDHLD_2 (0x4U << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x00000040 */ |
3346 | #define FSMC_BWTRx_ADDHLD_3 ((uint32_t)0x00000080) /*!< Bit 3 */ |
5532 | #define FSMC_BWTRx_ADDHLD_3 (0x8U << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x00000080 */ |
3347 | 5533 | ||
- | 5534 | #define FSMC_BWTRx_DATAST_Pos (8U) |
|
- | 5535 | #define FSMC_BWTRx_DATAST_Msk (0xFFU << FSMC_BWTRx_DATAST_Pos) /*!< 0x0000FF00 */ |
|
3348 | #define FSMC_BWTRx_DATAST ((uint32_t)0x0000FF00) /*!< DATAST [3:0] bits (Data-phase duration) */ |
5536 | #define FSMC_BWTRx_DATAST FSMC_BWTRx_DATAST_Msk /*!< DATAST [3:0] bits (Data-phase duration) */ |
3349 | #define FSMC_BWTRx_DATAST_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
5537 | #define FSMC_BWTRx_DATAST_0 (0x01U << FSMC_BWTRx_DATAST_Pos) /*!< 0x00000100 */ |
3350 | #define FSMC_BWTRx_DATAST_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
5538 | #define FSMC_BWTRx_DATAST_1 (0x02U << FSMC_BWTRx_DATAST_Pos) /*!< 0x00000200 */ |
3351 | #define FSMC_BWTRx_DATAST_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
5539 | #define FSMC_BWTRx_DATAST_2 (0x04U << FSMC_BWTRx_DATAST_Pos) /*!< 0x00000400 */ |
3352 | #define FSMC_BWTRx_DATAST_3 ((uint32_t)0x00000800) /*!< Bit 3 */ |
5540 | #define FSMC_BWTRx_DATAST_3 (0x08U << FSMC_BWTRx_DATAST_Pos) /*!< 0x00000800 */ |
3353 | #define FSMC_BWTRx_DATAST_4 ((uint32_t)0x00001000) /*!< Bit 4 */ |
5541 | #define FSMC_BWTRx_DATAST_4 (0x10U << FSMC_BWTRx_DATAST_Pos) /*!< 0x00001000 */ |
3354 | #define FSMC_BWTRx_DATAST_5 ((uint32_t)0x00002000) /*!< Bit 5 */ |
5542 | #define FSMC_BWTRx_DATAST_5 (0x20U << FSMC_BWTRx_DATAST_Pos) /*!< 0x00002000 */ |
3355 | #define FSMC_BWTRx_DATAST_6 ((uint32_t)0x00004000) /*!< Bit 6 */ |
5543 | #define FSMC_BWTRx_DATAST_6 (0x40U << FSMC_BWTRx_DATAST_Pos) /*!< 0x00004000 */ |
3356 | #define FSMC_BWTRx_DATAST_7 ((uint32_t)0x00008000) /*!< Bit 7 */ |
5544 | #define FSMC_BWTRx_DATAST_7 (0x80U << FSMC_BWTRx_DATAST_Pos) /*!< 0x00008000 */ |
3357 | 5545 | ||
- | 5546 | #define FSMC_BWTRx_BUSTURN_Pos (16U) |
|
- | 5547 | #define FSMC_BWTRx_BUSTURN_Msk (0xFU << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x000F0000 */ |
|
3358 | #define FSMC_BWTRx_BUSTURN ((uint32_t)0x000F0000) /*!< BUSTURN[3:0] bits (Bus turnaround phase duration) */ |
5548 | #define FSMC_BWTRx_BUSTURN FSMC_BWTRx_BUSTURN_Msk /*!< BUSTURN[3:0] bits (Bus turnaround phase duration) */ |
3359 | #define FSMC_BWTRx_BUSTURN_0 ((uint32_t)0x00010000) /*!< Bit 0 */ |
5549 | #define FSMC_BWTRx_BUSTURN_0 (0x1U << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x00010000 */ |
3360 | #define FSMC_BWTRx_BUSTURN_1 ((uint32_t)0x00020000) /*!< Bit 1 */ |
5550 | #define FSMC_BWTRx_BUSTURN_1 (0x2U << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x00020000 */ |
3361 | #define FSMC_BWTRx_BUSTURN_2 ((uint32_t)0x00040000) /*!< Bit 2 */ |
5551 | #define FSMC_BWTRx_BUSTURN_2 (0x4U << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x00040000 */ |
3362 | #define FSMC_BWTRx_BUSTURN_3 ((uint32_t)0x00080000) /*!< Bit 3 */ |
5552 | #define FSMC_BWTRx_BUSTURN_3 (0x8U << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x00080000 */ |
3363 | 5553 | ||
- | 5554 | #define FSMC_BWTRx_ACCMOD_Pos (28U) |
|
- | 5555 | #define FSMC_BWTRx_ACCMOD_Msk (0x3U << FSMC_BWTRx_ACCMOD_Pos) /*!< 0x30000000 */ |
|
3364 | #define FSMC_BWTRx_ACCMOD ((uint32_t)0x30000000) /*!< ACCMOD[1:0] bits (Access mode) */ |
5556 | #define FSMC_BWTRx_ACCMOD FSMC_BWTRx_ACCMOD_Msk /*!< ACCMOD[1:0] bits (Access mode) */ |
3365 | #define FSMC_BWTRx_ACCMOD_0 ((uint32_t)0x10000000) /*!< Bit 0 */ |
5557 | #define FSMC_BWTRx_ACCMOD_0 (0x1U << FSMC_BWTRx_ACCMOD_Pos) /*!< 0x10000000 */ |
3366 | #define FSMC_BWTRx_ACCMOD_1 ((uint32_t)0x20000000) /*!< Bit 1 */ |
5558 | #define FSMC_BWTRx_ACCMOD_1 (0x2U << FSMC_BWTRx_ACCMOD_Pos) /*!< 0x20000000 */ |
3367 | 5559 | ||
3368 | /****************** Bit definition for FSMC_PCRx (x = 2 to 4) register *******************/ |
5560 | /****************** Bit definition for FSMC_PCRx (x = 2 to 4) register *******************/ |
- | 5561 | #define FSMC_PCRx_PWAITEN_Pos (1U) |
|
- | 5562 | #define FSMC_PCRx_PWAITEN_Msk (0x1U << FSMC_PCRx_PWAITEN_Pos) /*!< 0x00000002 */ |
|
3369 | #define FSMC_PCRx_PWAITEN ((uint32_t)0x00000002) /*!< Wait feature enable bit */ |
5563 | #define FSMC_PCRx_PWAITEN FSMC_PCRx_PWAITEN_Msk /*!< Wait feature enable bit */ |
- | 5564 | #define FSMC_PCRx_PBKEN_Pos (2U) |
|
- | 5565 | #define FSMC_PCRx_PBKEN_Msk (0x1U << FSMC_PCRx_PBKEN_Pos) /*!< 0x00000004 */ |
|
3370 | #define FSMC_PCRx_PBKEN ((uint32_t)0x00000004) /*!< PC Card/NAND Flash memory bank enable bit */ |
5566 | #define FSMC_PCRx_PBKEN FSMC_PCRx_PBKEN_Msk /*!< PC Card/NAND Flash memory bank enable bit */ |
- | 5567 | #define FSMC_PCRx_PTYP_Pos (3U) |
|
- | 5568 | #define FSMC_PCRx_PTYP_Msk (0x1U << FSMC_PCRx_PTYP_Pos) /*!< 0x00000008 */ |
|
3371 | #define FSMC_PCRx_PTYP ((uint32_t)0x00000008) /*!< Memory type */ |
5569 | #define FSMC_PCRx_PTYP FSMC_PCRx_PTYP_Msk /*!< Memory type */ |
3372 | 5570 | ||
- | 5571 | #define FSMC_PCRx_PWID_Pos (4U) |
|
- | 5572 | #define FSMC_PCRx_PWID_Msk (0x3U << FSMC_PCRx_PWID_Pos) /*!< 0x00000030 */ |
|
3373 | #define FSMC_PCRx_PWID ((uint32_t)0x00000030) /*!< PWID[1:0] bits (NAND Flash databus width) */ |
5573 | #define FSMC_PCRx_PWID FSMC_PCRx_PWID_Msk /*!< PWID[1:0] bits (NAND Flash databus width) */ |
3374 | #define FSMC_PCRx_PWID_0 ((uint32_t)0x00000010) /*!< Bit 0 */ |
5574 | #define FSMC_PCRx_PWID_0 (0x1U << FSMC_PCRx_PWID_Pos) /*!< 0x00000010 */ |
3375 | #define FSMC_PCRx_PWID_1 ((uint32_t)0x00000020) /*!< Bit 1 */ |
5575 | #define FSMC_PCRx_PWID_1 (0x2U << FSMC_PCRx_PWID_Pos) /*!< 0x00000020 */ |
3376 | 5576 | ||
- | 5577 | #define FSMC_PCRx_ECCEN_Pos (6U) |
|
- | 5578 | #define FSMC_PCRx_ECCEN_Msk (0x1U << FSMC_PCRx_ECCEN_Pos) /*!< 0x00000040 */ |
|
3377 | #define FSMC_PCRx_ECCEN ((uint32_t)0x00000040) /*!< ECC computation logic enable bit */ |
5579 | #define FSMC_PCRx_ECCEN FSMC_PCRx_ECCEN_Msk /*!< ECC computation logic enable bit */ |
3378 | 5580 | ||
- | 5581 | #define FSMC_PCRx_TCLR_Pos (9U) |
|
- | 5582 | #define FSMC_PCRx_TCLR_Msk (0xFU << FSMC_PCRx_TCLR_Pos) /*!< 0x00001E00 */ |
|
3379 | #define FSMC_PCRx_TCLR ((uint32_t)0x00001E00) /*!< TCLR[3:0] bits (CLE to RE delay) */ |
5583 | #define FSMC_PCRx_TCLR FSMC_PCRx_TCLR_Msk /*!< TCLR[3:0] bits (CLE to RE delay) */ |
3380 | #define FSMC_PCRx_TCLR_0 ((uint32_t)0x00000200) /*!< Bit 0 */ |
5584 | #define FSMC_PCRx_TCLR_0 (0x1U << FSMC_PCRx_TCLR_Pos) /*!< 0x00000200 */ |
3381 | #define FSMC_PCRx_TCLR_1 ((uint32_t)0x00000400) /*!< Bit 1 */ |
5585 | #define FSMC_PCRx_TCLR_1 (0x2U << FSMC_PCRx_TCLR_Pos) /*!< 0x00000400 */ |
3382 | #define FSMC_PCRx_TCLR_2 ((uint32_t)0x00000800) /*!< Bit 2 */ |
5586 | #define FSMC_PCRx_TCLR_2 (0x4U << FSMC_PCRx_TCLR_Pos) /*!< 0x00000800 */ |
3383 | #define FSMC_PCRx_TCLR_3 ((uint32_t)0x00001000) /*!< Bit 3 */ |
5587 | #define FSMC_PCRx_TCLR_3 (0x8U << FSMC_PCRx_TCLR_Pos) /*!< 0x00001000 */ |
3384 | 5588 | ||
- | 5589 | #define FSMC_PCRx_TAR_Pos (13U) |
|
- | 5590 | #define FSMC_PCRx_TAR_Msk (0xFU << FSMC_PCRx_TAR_Pos) /*!< 0x0001E000 */ |
|
3385 | #define FSMC_PCRx_TAR ((uint32_t)0x0001E000) /*!< TAR[3:0] bits (ALE to RE delay) */ |
5591 | #define FSMC_PCRx_TAR FSMC_PCRx_TAR_Msk /*!< TAR[3:0] bits (ALE to RE delay) */ |
3386 | #define FSMC_PCRx_TAR_0 ((uint32_t)0x00002000) /*!< Bit 0 */ |
5592 | #define FSMC_PCRx_TAR_0 (0x1U << FSMC_PCRx_TAR_Pos) /*!< 0x00002000 */ |
3387 | #define FSMC_PCRx_TAR_1 ((uint32_t)0x00004000) /*!< Bit 1 */ |
5593 | #define FSMC_PCRx_TAR_1 (0x2U << FSMC_PCRx_TAR_Pos) /*!< 0x00004000 */ |
3388 | #define FSMC_PCRx_TAR_2 ((uint32_t)0x00008000) /*!< Bit 2 */ |
5594 | #define FSMC_PCRx_TAR_2 (0x4U << FSMC_PCRx_TAR_Pos) /*!< 0x00008000 */ |
3389 | #define FSMC_PCRx_TAR_3 ((uint32_t)0x00010000) /*!< Bit 3 */ |
5595 | #define FSMC_PCRx_TAR_3 (0x8U << FSMC_PCRx_TAR_Pos) /*!< 0x00010000 */ |
3390 | 5596 | ||
- | 5597 | #define FSMC_PCRx_ECCPS_Pos (17U) |
|
- | 5598 | #define FSMC_PCRx_ECCPS_Msk (0x7U << FSMC_PCRx_ECCPS_Pos) /*!< 0x000E0000 */ |
|
3391 | #define FSMC_PCRx_ECCPS ((uint32_t)0x000E0000) /*!< ECCPS[1:0] bits (ECC page size) */ |
5599 | #define FSMC_PCRx_ECCPS FSMC_PCRx_ECCPS_Msk /*!< ECCPS[1:0] bits (ECC page size) */ |
3392 | #define FSMC_PCRx_ECCPS_0 ((uint32_t)0x00020000) /*!< Bit 0 */ |
5600 | #define FSMC_PCRx_ECCPS_0 (0x1U << FSMC_PCRx_ECCPS_Pos) /*!< 0x00020000 */ |
3393 | #define FSMC_PCRx_ECCPS_1 ((uint32_t)0x00040000) /*!< Bit 1 */ |
5601 | #define FSMC_PCRx_ECCPS_1 (0x2U << FSMC_PCRx_ECCPS_Pos) /*!< 0x00040000 */ |
3394 | #define FSMC_PCRx_ECCPS_2 ((uint32_t)0x00080000) /*!< Bit 2 */ |
5602 | #define FSMC_PCRx_ECCPS_2 (0x4U << FSMC_PCRx_ECCPS_Pos) /*!< 0x00080000 */ |
3395 | 5603 | ||
3396 | /******************* Bit definition for FSMC_SRx (x = 2 to 4) register *******************/ |
5604 | /******************* Bit definition for FSMC_SRx (x = 2 to 4) register *******************/ |
- | 5605 | #define FSMC_SRx_IRS_Pos (0U) |
|
- | 5606 | #define FSMC_SRx_IRS_Msk (0x1U << FSMC_SRx_IRS_Pos) /*!< 0x00000001 */ |
|
3397 | #define FSMC_SRx_IRS ((uint32_t)0x00000001) /*!< Interrupt Rising Edge status */ |
5607 | #define FSMC_SRx_IRS FSMC_SRx_IRS_Msk /*!< Interrupt Rising Edge status */ |
- | 5608 | #define FSMC_SRx_ILS_Pos (1U) |
|
- | 5609 | #define FSMC_SRx_ILS_Msk (0x1U << FSMC_SRx_ILS_Pos) /*!< 0x00000002 */ |
|
3398 | #define FSMC_SRx_ILS ((uint32_t)0x00000002) /*!< Interrupt Level status */ |
5610 | #define FSMC_SRx_ILS FSMC_SRx_ILS_Msk /*!< Interrupt Level status */ |
- | 5611 | #define FSMC_SRx_IFS_Pos (2U) |
|
- | 5612 | #define FSMC_SRx_IFS_Msk (0x1U << FSMC_SRx_IFS_Pos) /*!< 0x00000004 */ |
|
3399 | #define FSMC_SRx_IFS ((uint32_t)0x00000004) /*!< Interrupt Falling Edge status */ |
5613 | #define FSMC_SRx_IFS FSMC_SRx_IFS_Msk /*!< Interrupt Falling Edge status */ |
- | 5614 | #define FSMC_SRx_IREN_Pos (3U) |
|
- | 5615 | #define FSMC_SRx_IREN_Msk (0x1U << FSMC_SRx_IREN_Pos) /*!< 0x00000008 */ |
|
3400 | #define FSMC_SRx_IREN ((uint32_t)0x00000008) /*!< Interrupt Rising Edge detection Enable bit */ |
5616 | #define FSMC_SRx_IREN FSMC_SRx_IREN_Msk /*!< Interrupt Rising Edge detection Enable bit */ |
- | 5617 | #define FSMC_SRx_ILEN_Pos (4U) |
|
- | 5618 | #define FSMC_SRx_ILEN_Msk (0x1U << FSMC_SRx_ILEN_Pos) /*!< 0x00000010 */ |
|
3401 | #define FSMC_SRx_ILEN ((uint32_t)0x00000010) /*!< Interrupt Level detection Enable bit */ |
5619 | #define FSMC_SRx_ILEN FSMC_SRx_ILEN_Msk /*!< Interrupt Level detection Enable bit */ |
- | 5620 | #define FSMC_SRx_IFEN_Pos (5U) |
|
- | 5621 | #define FSMC_SRx_IFEN_Msk (0x1U << FSMC_SRx_IFEN_Pos) /*!< 0x00000020 */ |
|
3402 | #define FSMC_SRx_IFEN ((uint32_t)0x00000020) /*!< Interrupt Falling Edge detection Enable bit */ |
5622 | #define FSMC_SRx_IFEN FSMC_SRx_IFEN_Msk /*!< Interrupt Falling Edge detection Enable bit */ |
- | 5623 | #define FSMC_SRx_FEMPT_Pos (6U) |
|
- | 5624 | #define FSMC_SRx_FEMPT_Msk (0x1U << FSMC_SRx_FEMPT_Pos) /*!< 0x00000040 */ |
|
3403 | #define FSMC_SRx_FEMPT ((uint32_t)0x00000040) /*!< FIFO empty */ |
5625 | #define FSMC_SRx_FEMPT FSMC_SRx_FEMPT_Msk /*!< FIFO empty */ |
3404 | 5626 | ||
3405 | /****************** Bit definition for FSMC_PMEMx (x = 2 to 4) register ******************/ |
5627 | /****************** Bit definition for FSMC_PMEMx (x = 2 to 4) register ******************/ |
- | 5628 | #define FSMC_PMEMx_MEMSETx_Pos (0U) |
|
- | 5629 | #define FSMC_PMEMx_MEMSETx_Msk (0xFFU << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x000000FF */ |
|
3406 | #define FSMC_PMEMx_MEMSETx ((uint32_t)0x000000FF) /*!< MEMSETx[7:0] bits (Common memory x setup time) */ |
5630 | #define FSMC_PMEMx_MEMSETx FSMC_PMEMx_MEMSETx_Msk /*!< MEMSETx[7:0] bits (Common memory x setup time) */ |
3407 | #define FSMC_PMEMx_MEMSETx_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
5631 | #define FSMC_PMEMx_MEMSETx_0 (0x01U << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000001 */ |
3408 | #define FSMC_PMEMx_MEMSETx_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
5632 | #define FSMC_PMEMx_MEMSETx_1 (0x02U << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000002 */ |
3409 | #define FSMC_PMEMx_MEMSETx_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
5633 | #define FSMC_PMEMx_MEMSETx_2 (0x04U << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000004 */ |
3410 | #define FSMC_PMEMx_MEMSETx_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
5634 | #define FSMC_PMEMx_MEMSETx_3 (0x08U << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000008 */ |
3411 | #define FSMC_PMEMx_MEMSETx_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
5635 | #define FSMC_PMEMx_MEMSETx_4 (0x10U << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000010 */ |
3412 | #define FSMC_PMEMx_MEMSETx_5 ((uint32_t)0x00000020) /*!< Bit 5 */ |
5636 | #define FSMC_PMEMx_MEMSETx_5 (0x20U << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000020 */ |
3413 | #define FSMC_PMEMx_MEMSETx_6 ((uint32_t)0x00000040) /*!< Bit 6 */ |
5637 | #define FSMC_PMEMx_MEMSETx_6 (0x40U << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000040 */ |
3414 | #define FSMC_PMEMx_MEMSETx_7 ((uint32_t)0x00000080) /*!< Bit 7 */ |
5638 | #define FSMC_PMEMx_MEMSETx_7 (0x80U << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000080 */ |
3415 | 5639 | ||
- | 5640 | #define FSMC_PMEMx_MEMWAITx_Pos (8U) |
|
- | 5641 | #define FSMC_PMEMx_MEMWAITx_Msk (0xFFU << FSMC_PMEMx_MEMWAITx_Pos) /*!< 0x0000FF00 */ |
|
3416 | #define FSMC_PMEMx_MEMWAITx ((uint32_t)0x0000FF00) /*!< MEMWAITx[7:0] bits (Common memory x wait time) */ |
5642 | #define FSMC_PMEMx_MEMWAITx FSMC_PMEMx_MEMWAITx_Msk /*!< MEMWAITx[7:0] bits (Common memory x wait time) */ |
3417 | #define FSMC_PMEMx_MEMWAIT2_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
5643 | #define FSMC_PMEMx_MEMWAIT2_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
3418 | #define FSMC_PMEMx_MEMWAITx_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
5644 | #define FSMC_PMEMx_MEMWAITx_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
3419 | #define FSMC_PMEMx_MEMWAITx_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
5645 | #define FSMC_PMEMx_MEMWAITx_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
3420 | #define FSMC_PMEMx_MEMWAITx_3 ((uint32_t)0x00000800) /*!< Bit 3 */ |
5646 | #define FSMC_PMEMx_MEMWAITx_3 ((uint32_t)0x00000800) /*!< Bit 3 */ |
3421 | #define FSMC_PMEMx_MEMWAITx_4 ((uint32_t)0x00001000) /*!< Bit 4 */ |
5647 | #define FSMC_PMEMx_MEMWAITx_4 ((uint32_t)0x00001000) /*!< Bit 4 */ |
3422 | #define FSMC_PMEMx_MEMWAITx_5 ((uint32_t)0x00002000) /*!< Bit 5 */ |
5648 | #define FSMC_PMEMx_MEMWAITx_5 ((uint32_t)0x00002000) /*!< Bit 5 */ |
3423 | #define FSMC_PMEMx_MEMWAITx_6 ((uint32_t)0x00004000) /*!< Bit 6 */ |
5649 | #define FSMC_PMEMx_MEMWAITx_6 ((uint32_t)0x00004000) /*!< Bit 6 */ |
3424 | #define FSMC_PMEMx_MEMWAITx_7 ((uint32_t)0x00008000) /*!< Bit 7 */ |
5650 | #define FSMC_PMEMx_MEMWAITx_7 ((uint32_t)0x00008000) /*!< Bit 7 */ |
3425 | 5651 | ||
- | 5652 | #define FSMC_PMEMx_MEMHOLDx_Pos (16U) |
|
- | 5653 | #define FSMC_PMEMx_MEMHOLDx_Msk (0xFFU << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00FF0000 */ |
|
3426 | #define FSMC_PMEMx_MEMHOLDx ((uint32_t)0x00FF0000) /*!< MEMHOLDx[7:0] bits (Common memory x hold time) */ |
5654 | #define FSMC_PMEMx_MEMHOLDx FSMC_PMEMx_MEMHOLDx_Msk /*!< MEMHOLDx[7:0] bits (Common memory x hold time) */ |
3427 | #define FSMC_PMEMx_MEMHOLDx_0 ((uint32_t)0x00010000) /*!< Bit 0 */ |
5655 | #define FSMC_PMEMx_MEMHOLDx_0 (0x01U << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00010000 */ |
3428 | #define FSMC_PMEMx_MEMHOLDx_1 ((uint32_t)0x00020000) /*!< Bit 1 */ |
5656 | #define FSMC_PMEMx_MEMHOLDx_1 (0x02U << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00020000 */ |
3429 | #define FSMC_PMEMx_MEMHOLDx_2 ((uint32_t)0x00040000) /*!< Bit 2 */ |
5657 | #define FSMC_PMEMx_MEMHOLDx_2 (0x04U << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00040000 */ |
3430 | #define FSMC_PMEMx_MEMHOLDx_3 ((uint32_t)0x00080000) /*!< Bit 3 */ |
5658 | #define FSMC_PMEMx_MEMHOLDx_3 (0x08U << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00080000 */ |
3431 | #define FSMC_PMEMx_MEMHOLDx_4 ((uint32_t)0x00100000) /*!< Bit 4 */ |
5659 | #define FSMC_PMEMx_MEMHOLDx_4 (0x10U << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00100000 */ |
3432 | #define FSMC_PMEMx_MEMHOLDx_5 ((uint32_t)0x00200000) /*!< Bit 5 */ |
5660 | #define FSMC_PMEMx_MEMHOLDx_5 (0x20U << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00200000 */ |
3433 | #define FSMC_PMEMx_MEMHOLDx_6 ((uint32_t)0x00400000) /*!< Bit 6 */ |
5661 | #define FSMC_PMEMx_MEMHOLDx_6 (0x40U << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00400000 */ |
3434 | #define FSMC_PMEMx_MEMHOLDx_7 ((uint32_t)0x00800000) /*!< Bit 7 */ |
5662 | #define FSMC_PMEMx_MEMHOLDx_7 (0x80U << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00800000 */ |
3435 | 5663 | ||
- | 5664 | #define FSMC_PMEMx_MEMHIZx_Pos (24U) |
|
- | 5665 | #define FSMC_PMEMx_MEMHIZx_Msk (0xFFU << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0xFF000000 */ |
|
3436 | #define FSMC_PMEMx_MEMHIZx ((uint32_t)0xFF000000) /*!< MEMHIZx[7:0] bits (Common memory x databus HiZ time) */ |
5666 | #define FSMC_PMEMx_MEMHIZx FSMC_PMEMx_MEMHIZx_Msk /*!< MEMHIZx[7:0] bits (Common memory x databus HiZ time) */ |
3437 | #define FSMC_PMEMx_MEMHIZx_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
5667 | #define FSMC_PMEMx_MEMHIZx_0 (0x01U << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x01000000 */ |
3438 | #define FSMC_PMEMx_MEMHIZx_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
5668 | #define FSMC_PMEMx_MEMHIZx_1 (0x02U << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x02000000 */ |
3439 | #define FSMC_PMEMx_MEMHIZx_2 ((uint32_t)0x04000000) /*!< Bit 2 */ |
5669 | #define FSMC_PMEMx_MEMHIZx_2 (0x04U << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x04000000 */ |
3440 | #define FSMC_PMEMx_MEMHIZx_3 ((uint32_t)0x08000000) /*!< Bit 3 */ |
5670 | #define FSMC_PMEMx_MEMHIZx_3 (0x08U << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x08000000 */ |
3441 | #define FSMC_PMEMx_MEMHIZx_4 ((uint32_t)0x10000000) /*!< Bit 4 */ |
5671 | #define FSMC_PMEMx_MEMHIZx_4 (0x10U << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x10000000 */ |
3442 | #define FSMC_PMEMx_MEMHIZx_5 ((uint32_t)0x20000000) /*!< Bit 5 */ |
5672 | #define FSMC_PMEMx_MEMHIZx_5 (0x20U << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x20000000 */ |
3443 | #define FSMC_PMEMx_MEMHIZx_6 ((uint32_t)0x40000000) /*!< Bit 6 */ |
5673 | #define FSMC_PMEMx_MEMHIZx_6 (0x40U << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x40000000 */ |
3444 | #define FSMC_PMEMx_MEMHIZx_7 ((uint32_t)0x80000000) /*!< Bit 7 */ |
5674 | #define FSMC_PMEMx_MEMHIZx_7 (0x80U << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x80000000 */ |
3445 | 5675 | ||
3446 | /****************** Bit definition for FSMC_PATTx (x = 2 to 4) register ******************/ |
5676 | /****************** Bit definition for FSMC_PATTx (x = 2 to 4) register ******************/ |
- | 5677 | #define FSMC_PATTx_ATTSETx_Pos (0U) |
|
- | 5678 | #define FSMC_PATTx_ATTSETx_Msk (0xFFU << FSMC_PATTx_ATTSETx_Pos) /*!< 0x000000FF */ |
|
3447 | #define FSMC_PATTx_ATTSETx ((uint32_t)0x000000FF) /*!< ATTSETx[7:0] bits (Attribute memory x setup time) */ |
5679 | #define FSMC_PATTx_ATTSETx FSMC_PATTx_ATTSETx_Msk /*!< ATTSETx[7:0] bits (Attribute memory x setup time) */ |
3448 | #define FSMC_PATTx_ATTSETx_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
5680 | #define FSMC_PATTx_ATTSETx_0 (0x01U << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000001 */ |
3449 | #define FSMC_PATTx_ATTSETx_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
5681 | #define FSMC_PATTx_ATTSETx_1 (0x02U << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000002 */ |
3450 | #define FSMC_PATTx_ATTSETx_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
5682 | #define FSMC_PATTx_ATTSETx_2 (0x04U << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000004 */ |
3451 | #define FSMC_PATTx_ATTSETx_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
5683 | #define FSMC_PATTx_ATTSETx_3 (0x08U << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000008 */ |
3452 | #define FSMC_PATTx_ATTSETx_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
5684 | #define FSMC_PATTx_ATTSETx_4 (0x10U << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000010 */ |
3453 | #define FSMC_PATTx_ATTSETx_5 ((uint32_t)0x00000020) /*!< Bit 5 */ |
5685 | #define FSMC_PATTx_ATTSETx_5 (0x20U << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000020 */ |
3454 | #define FSMC_PATTx_ATTSETx_6 ((uint32_t)0x00000040) /*!< Bit 6 */ |
5686 | #define FSMC_PATTx_ATTSETx_6 (0x40U << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000040 */ |
3455 | #define FSMC_PATTx_ATTSETx_7 ((uint32_t)0x00000080) /*!< Bit 7 */ |
5687 | #define FSMC_PATTx_ATTSETx_7 (0x80U << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000080 */ |
3456 | 5688 | ||
- | 5689 | #define FSMC_PATTx_ATTWAITx_Pos (8U) |
|
- | 5690 | #define FSMC_PATTx_ATTWAITx_Msk (0xFFU << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x0000FF00 */ |
|
3457 | #define FSMC_PATTx_ATTWAITx ((uint32_t)0x0000FF00) /*!< ATTWAITx[7:0] bits (Attribute memory x wait time) */ |
5691 | #define FSMC_PATTx_ATTWAITx FSMC_PATTx_ATTWAITx_Msk /*!< ATTWAITx[7:0] bits (Attribute memory x wait time) */ |
3458 | #define FSMC_PATTx_ATTWAITx_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
5692 | #define FSMC_PATTx_ATTWAITx_0 (0x01U << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00000100 */ |
3459 | #define FSMC_PATTx_ATTWAITx_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
5693 | #define FSMC_PATTx_ATTWAITx_1 (0x02U << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00000200 */ |
3460 | #define FSMC_PATTx_ATTWAITx_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
5694 | #define FSMC_PATTx_ATTWAITx_2 (0x04U << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00000400 */ |
3461 | #define FSMC_PATTx_ATTWAITx_3 ((uint32_t)0x00000800) /*!< Bit 3 */ |
5695 | #define FSMC_PATTx_ATTWAITx_3 (0x08U << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00000800 */ |
3462 | #define FSMC_PATTx_ATTWAITx_4 ((uint32_t)0x00001000) /*!< Bit 4 */ |
5696 | #define FSMC_PATTx_ATTWAITx_4 (0x10U << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00001000 */ |
3463 | #define FSMC_PATTx_ATTWAITx_5 ((uint32_t)0x00002000) /*!< Bit 5 */ |
5697 | #define FSMC_PATTx_ATTWAITx_5 (0x20U << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00002000 */ |
3464 | #define FSMC_PATTx_ATTWAITx_6 ((uint32_t)0x00004000) /*!< Bit 6 */ |
5698 | #define FSMC_PATTx_ATTWAITx_6 (0x40U << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00004000 */ |
3465 | #define FSMC_PATTx_ATTWAITx_7 ((uint32_t)0x00008000) /*!< Bit 7 */ |
5699 | #define FSMC_PATTx_ATTWAITx_7 (0x80U << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00008000 */ |
3466 | 5700 | ||
- | 5701 | #define FSMC_PATTx_ATTHOLDx_Pos (16U) |
|
- | 5702 | #define FSMC_PATTx_ATTHOLDx_Msk (0xFFU << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00FF0000 */ |
|
3467 | #define FSMC_PATTx_ATTHOLDx ((uint32_t)0x00FF0000) /*!< ATTHOLDx[7:0] bits (Attribute memory x hold time) */ |
5703 | #define FSMC_PATTx_ATTHOLDx FSMC_PATTx_ATTHOLDx_Msk /*!< ATTHOLDx[7:0] bits (Attribute memory x hold time) */ |
3468 | #define FSMC_PATTx_ATTHOLDx_0 ((uint32_t)0x00010000) /*!< Bit 0 */ |
5704 | #define FSMC_PATTx_ATTHOLDx_0 (0x01U << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00010000 */ |
3469 | #define FSMC_PATTx_ATTHOLDx_1 ((uint32_t)0x00020000) /*!< Bit 1 */ |
5705 | #define FSMC_PATTx_ATTHOLDx_1 (0x02U << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00020000 */ |
3470 | #define FSMC_PATTx_ATTHOLDx_2 ((uint32_t)0x00040000) /*!< Bit 2 */ |
5706 | #define FSMC_PATTx_ATTHOLDx_2 (0x04U << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00040000 */ |
3471 | #define FSMC_PATTx_ATTHOLDx_3 ((uint32_t)0x00080000) /*!< Bit 3 */ |
5707 | #define FSMC_PATTx_ATTHOLDx_3 (0x08U << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00080000 */ |
3472 | #define FSMC_PATTx_ATTHOLDx_4 ((uint32_t)0x00100000) /*!< Bit 4 */ |
5708 | #define FSMC_PATTx_ATTHOLDx_4 (0x10U << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00100000 */ |
3473 | #define FSMC_PATTx_ATTHOLDx_5 ((uint32_t)0x00200000) /*!< Bit 5 */ |
5709 | #define FSMC_PATTx_ATTHOLDx_5 (0x20U << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00200000 */ |
3474 | #define FSMC_PATTx_ATTHOLDx_6 ((uint32_t)0x00400000) /*!< Bit 6 */ |
5710 | #define FSMC_PATTx_ATTHOLDx_6 (0x40U << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00400000 */ |
3475 | #define FSMC_PATTx_ATTHOLDx_7 ((uint32_t)0x00800000) /*!< Bit 7 */ |
5711 | #define FSMC_PATTx_ATTHOLDx_7 (0x80U << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00800000 */ |
3476 | 5712 | ||
- | 5713 | #define FSMC_PATTx_ATTHIZx_Pos (24U) |
|
- | 5714 | #define FSMC_PATTx_ATTHIZx_Msk (0xFFU << FSMC_PATTx_ATTHIZx_Pos) /*!< 0xFF000000 */ |
|
3477 | #define FSMC_PATTx_ATTHIZx ((uint32_t)0xFF000000) /*!< ATTHIZx[7:0] bits (Attribute memory x databus HiZ time) */ |
5715 | #define FSMC_PATTx_ATTHIZx FSMC_PATTx_ATTHIZx_Msk /*!< ATTHIZx[7:0] bits (Attribute memory x databus HiZ time) */ |
3478 | #define FSMC_PATTx_ATTHIZx_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
5716 | #define FSMC_PATTx_ATTHIZx_0 (0x01U << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x01000000 */ |
3479 | #define FSMC_PATTx_ATTHIZx_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
5717 | #define FSMC_PATTx_ATTHIZx_1 (0x02U << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x02000000 */ |
3480 | #define FSMC_PATTx_ATTHIZx_2 ((uint32_t)0x04000000) /*!< Bit 2 */ |
5718 | #define FSMC_PATTx_ATTHIZx_2 (0x04U << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x04000000 */ |
3481 | #define FSMC_PATTx_ATTHIZx_3 ((uint32_t)0x08000000) /*!< Bit 3 */ |
5719 | #define FSMC_PATTx_ATTHIZx_3 (0x08U << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x08000000 */ |
3482 | #define FSMC_PATTx_ATTHIZx_4 ((uint32_t)0x10000000) /*!< Bit 4 */ |
5720 | #define FSMC_PATTx_ATTHIZx_4 (0x10U << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x10000000 */ |
3483 | #define FSMC_PATTx_ATTHIZx_5 ((uint32_t)0x20000000) /*!< Bit 5 */ |
5721 | #define FSMC_PATTx_ATTHIZx_5 (0x20U << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x20000000 */ |
3484 | #define FSMC_PATTx_ATTHIZx_6 ((uint32_t)0x40000000) /*!< Bit 6 */ |
5722 | #define FSMC_PATTx_ATTHIZx_6 (0x40U << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x40000000 */ |
3485 | #define FSMC_PATTx_ATTHIZx_7 ((uint32_t)0x80000000) /*!< Bit 7 */ |
5723 | #define FSMC_PATTx_ATTHIZx_7 (0x80U << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x80000000 */ |
3486 | 5724 | ||
3487 | /****************** Bit definition for FSMC_PIO4 register *******************/ |
5725 | /****************** Bit definition for FSMC_PIO4 register *******************/ |
- | 5726 | #define FSMC_PIO4_IOSET4_Pos (0U) |
|
- | 5727 | #define FSMC_PIO4_IOSET4_Msk (0xFFU << FSMC_PIO4_IOSET4_Pos) /*!< 0x000000FF */ |
|
3488 | #define FSMC_PIO4_IOSET4 ((uint32_t)0x000000FF) /*!< IOSET4[7:0] bits (I/O 4 setup time) */ |
5728 | #define FSMC_PIO4_IOSET4 FSMC_PIO4_IOSET4_Msk /*!< IOSET4[7:0] bits (I/O 4 setup time) */ |
3489 | #define FSMC_PIO4_IOSET4_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
5729 | #define FSMC_PIO4_IOSET4_0 (0x01U << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000001 */ |
3490 | #define FSMC_PIO4_IOSET4_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
5730 | #define FSMC_PIO4_IOSET4_1 (0x02U << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000002 */ |
3491 | #define FSMC_PIO4_IOSET4_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
5731 | #define FSMC_PIO4_IOSET4_2 (0x04U << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000004 */ |
3492 | #define FSMC_PIO4_IOSET4_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
5732 | #define FSMC_PIO4_IOSET4_3 (0x08U << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000008 */ |
3493 | #define FSMC_PIO4_IOSET4_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
5733 | #define FSMC_PIO4_IOSET4_4 (0x10U << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000010 */ |
3494 | #define FSMC_PIO4_IOSET4_5 ((uint32_t)0x00000020) /*!< Bit 5 */ |
5734 | #define FSMC_PIO4_IOSET4_5 (0x20U << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000020 */ |
3495 | #define FSMC_PIO4_IOSET4_6 ((uint32_t)0x00000040) /*!< Bit 6 */ |
5735 | #define FSMC_PIO4_IOSET4_6 (0x40U << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000040 */ |
3496 | #define FSMC_PIO4_IOSET4_7 ((uint32_t)0x00000080) /*!< Bit 7 */ |
5736 | #define FSMC_PIO4_IOSET4_7 (0x80U << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000080 */ |
3497 | 5737 | ||
- | 5738 | #define FSMC_PIO4_IOWAIT4_Pos (8U) |
|
- | 5739 | #define FSMC_PIO4_IOWAIT4_Msk (0xFFU << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x0000FF00 */ |
|
3498 | #define FSMC_PIO4_IOWAIT4 ((uint32_t)0x0000FF00) /*!< IOWAIT4[7:0] bits (I/O 4 wait time) */ |
5740 | #define FSMC_PIO4_IOWAIT4 FSMC_PIO4_IOWAIT4_Msk /*!< IOWAIT4[7:0] bits (I/O 4 wait time) */ |
3499 | #define FSMC_PIO4_IOWAIT4_0 ((uint32_t)0x00000100) /*!< Bit 0 */ |
5741 | #define FSMC_PIO4_IOWAIT4_0 (0x01U << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00000100 */ |
3500 | #define FSMC_PIO4_IOWAIT4_1 ((uint32_t)0x00000200) /*!< Bit 1 */ |
5742 | #define FSMC_PIO4_IOWAIT4_1 (0x02U << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00000200 */ |
3501 | #define FSMC_PIO4_IOWAIT4_2 ((uint32_t)0x00000400) /*!< Bit 2 */ |
5743 | #define FSMC_PIO4_IOWAIT4_2 (0x04U << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00000400 */ |
3502 | #define FSMC_PIO4_IOWAIT4_3 ((uint32_t)0x00000800) /*!< Bit 3 */ |
5744 | #define FSMC_PIO4_IOWAIT4_3 (0x08U << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00000800 */ |
3503 | #define FSMC_PIO4_IOWAIT4_4 ((uint32_t)0x00001000) /*!< Bit 4 */ |
5745 | #define FSMC_PIO4_IOWAIT4_4 (0x10U << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00001000 */ |
3504 | #define FSMC_PIO4_IOWAIT4_5 ((uint32_t)0x00002000) /*!< Bit 5 */ |
5746 | #define FSMC_PIO4_IOWAIT4_5 (0x20U << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00002000 */ |
3505 | #define FSMC_PIO4_IOWAIT4_6 ((uint32_t)0x00004000) /*!< Bit 6 */ |
5747 | #define FSMC_PIO4_IOWAIT4_6 (0x40U << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00004000 */ |
3506 | #define FSMC_PIO4_IOWAIT4_7 ((uint32_t)0x00008000) /*!< Bit 7 */ |
5748 | #define FSMC_PIO4_IOWAIT4_7 (0x80U << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00008000 */ |
3507 | 5749 | ||
- | 5750 | #define FSMC_PIO4_IOHOLD4_Pos (16U) |
|
- | 5751 | #define FSMC_PIO4_IOHOLD4_Msk (0xFFU << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00FF0000 */ |
|
3508 | #define FSMC_PIO4_IOHOLD4 ((uint32_t)0x00FF0000) /*!< IOHOLD4[7:0] bits (I/O 4 hold time) */ |
5752 | #define FSMC_PIO4_IOHOLD4 FSMC_PIO4_IOHOLD4_Msk /*!< IOHOLD4[7:0] bits (I/O 4 hold time) */ |
3509 | #define FSMC_PIO4_IOHOLD4_0 ((uint32_t)0x00010000) /*!< Bit 0 */ |
5753 | #define FSMC_PIO4_IOHOLD4_0 (0x01U << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00010000 */ |
3510 | #define FSMC_PIO4_IOHOLD4_1 ((uint32_t)0x00020000) /*!< Bit 1 */ |
5754 | #define FSMC_PIO4_IOHOLD4_1 (0x02U << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00020000 */ |
3511 | #define FSMC_PIO4_IOHOLD4_2 ((uint32_t)0x00040000) /*!< Bit 2 */ |
5755 | #define FSMC_PIO4_IOHOLD4_2 (0x04U << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00040000 */ |
3512 | #define FSMC_PIO4_IOHOLD4_3 ((uint32_t)0x00080000) /*!< Bit 3 */ |
5756 | #define FSMC_PIO4_IOHOLD4_3 (0x08U << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00080000 */ |
3513 | #define FSMC_PIO4_IOHOLD4_4 ((uint32_t)0x00100000) /*!< Bit 4 */ |
5757 | #define FSMC_PIO4_IOHOLD4_4 (0x10U << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00100000 */ |
3514 | #define FSMC_PIO4_IOHOLD4_5 ((uint32_t)0x00200000) /*!< Bit 5 */ |
5758 | #define FSMC_PIO4_IOHOLD4_5 (0x20U << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00200000 */ |
3515 | #define FSMC_PIO4_IOHOLD4_6 ((uint32_t)0x00400000) /*!< Bit 6 */ |
5759 | #define FSMC_PIO4_IOHOLD4_6 (0x40U << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00400000 */ |
3516 | #define FSMC_PIO4_IOHOLD4_7 ((uint32_t)0x00800000) /*!< Bit 7 */ |
5760 | #define FSMC_PIO4_IOHOLD4_7 (0x80U << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00800000 */ |
3517 | 5761 | ||
- | 5762 | #define FSMC_PIO4_IOHIZ4_Pos (24U) |
|
- | 5763 | #define FSMC_PIO4_IOHIZ4_Msk (0xFFU << FSMC_PIO4_IOHIZ4_Pos) /*!< 0xFF000000 */ |
|
3518 | #define FSMC_PIO4_IOHIZ4 ((uint32_t)0xFF000000) /*!< IOHIZ4[7:0] bits (I/O 4 databus HiZ time) */ |
5764 | #define FSMC_PIO4_IOHIZ4 FSMC_PIO4_IOHIZ4_Msk /*!< IOHIZ4[7:0] bits (I/O 4 databus HiZ time) */ |
3519 | #define FSMC_PIO4_IOHIZ4_0 ((uint32_t)0x01000000) /*!< Bit 0 */ |
5765 | #define FSMC_PIO4_IOHIZ4_0 (0x01U << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x01000000 */ |
3520 | #define FSMC_PIO4_IOHIZ4_1 ((uint32_t)0x02000000) /*!< Bit 1 */ |
5766 | #define FSMC_PIO4_IOHIZ4_1 (0x02U << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x02000000 */ |
3521 | #define FSMC_PIO4_IOHIZ4_2 ((uint32_t)0x04000000) /*!< Bit 2 */ |
5767 | #define FSMC_PIO4_IOHIZ4_2 (0x04U << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x04000000 */ |
3522 | #define FSMC_PIO4_IOHIZ4_3 ((uint32_t)0x08000000) /*!< Bit 3 */ |
5768 | #define FSMC_PIO4_IOHIZ4_3 (0x08U << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x08000000 */ |
3523 | #define FSMC_PIO4_IOHIZ4_4 ((uint32_t)0x10000000) /*!< Bit 4 */ |
5769 | #define FSMC_PIO4_IOHIZ4_4 (0x10U << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x10000000 */ |
3524 | #define FSMC_PIO4_IOHIZ4_5 ((uint32_t)0x20000000) /*!< Bit 5 */ |
5770 | #define FSMC_PIO4_IOHIZ4_5 (0x20U << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x20000000 */ |
3525 | #define FSMC_PIO4_IOHIZ4_6 ((uint32_t)0x40000000) /*!< Bit 6 */ |
5771 | #define FSMC_PIO4_IOHIZ4_6 (0x40U << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x40000000 */ |
3526 | #define FSMC_PIO4_IOHIZ4_7 ((uint32_t)0x80000000) /*!< Bit 7 */ |
5772 | #define FSMC_PIO4_IOHIZ4_7 (0x80U << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x80000000 */ |
3527 | 5773 | ||
3528 | /****************** Bit definition for FSMC_ECCR2 register ******************/ |
5774 | /****************** Bit definition for FSMC_ECCR2 register ******************/ |
- | 5775 | #define FSMC_ECCR2_ECC2_Pos (0U) |
|
- | 5776 | #define FSMC_ECCR2_ECC2_Msk (0xFFFFFFFFU << FSMC_ECCR2_ECC2_Pos) /*!< 0xFFFFFFFF */ |
|
3529 | #define FSMC_ECCR2_ECC2 ((uint32_t)0xFFFFFFFF) /*!< ECC result */ |
5777 | #define FSMC_ECCR2_ECC2 FSMC_ECCR2_ECC2_Msk /*!< ECC result */ |
3530 | 5778 | ||
3531 | /****************** Bit definition for FSMC_ECCR3 register ******************/ |
5779 | /****************** Bit definition for FSMC_ECCR3 register ******************/ |
- | 5780 | #define FSMC_ECCR3_ECC3_Pos (0U) |
|
- | 5781 | #define FSMC_ECCR3_ECC3_Msk (0xFFFFFFFFU << FSMC_ECCR3_ECC3_Pos) /*!< 0xFFFFFFFF */ |
|
3532 | #define FSMC_ECCR3_ECC3 ((uint32_t)0xFFFFFFFF) /*!< ECC result */ |
5782 | #define FSMC_ECCR3_ECC3 FSMC_ECCR3_ECC3_Msk /*!< ECC result */ |
3533 | 5783 | ||
3534 | /******************************************************************************/ |
5784 | /******************************************************************************/ |
3535 | /* */ |
5785 | /* */ |
3536 | /* SD host Interface */ |
5786 | /* SD host Interface */ |
3537 | /* */ |
5787 | /* */ |
3538 | /******************************************************************************/ |
5788 | /******************************************************************************/ |
3539 | 5789 | ||
3540 | /****************** Bit definition for SDIO_POWER register ******************/ |
5790 | /****************** Bit definition for SDIO_POWER register ******************/ |
- | 5791 | #define SDIO_POWER_PWRCTRL_Pos (0U) |
|
- | 5792 | #define SDIO_POWER_PWRCTRL_Msk (0x3U << SDIO_POWER_PWRCTRL_Pos) /*!< 0x00000003 */ |
|
3541 | #define SDIO_POWER_PWRCTRL ((uint32_t)0x03) /*!< PWRCTRL[1:0] bits (Power supply control bits) */ |
5793 | #define SDIO_POWER_PWRCTRL SDIO_POWER_PWRCTRL_Msk /*!< PWRCTRL[1:0] bits (Power supply control bits) */ |
3542 | #define SDIO_POWER_PWRCTRL_0 ((uint32_t)0x01) /*!< Bit 0 */ |
5794 | #define SDIO_POWER_PWRCTRL_0 (0x1U << SDIO_POWER_PWRCTRL_Pos) /*!< 0x01 */ |
3543 | #define SDIO_POWER_PWRCTRL_1 ((uint32_t)0x02) /*!< Bit 1 */ |
5795 | #define SDIO_POWER_PWRCTRL_1 (0x2U << SDIO_POWER_PWRCTRL_Pos) /*!< 0x02 */ |
3544 | 5796 | ||
3545 | /****************** Bit definition for SDIO_CLKCR register ******************/ |
5797 | /****************** Bit definition for SDIO_CLKCR register ******************/ |
- | 5798 | #define SDIO_CLKCR_CLKDIV_Pos (0U) |
|
- | 5799 | #define SDIO_CLKCR_CLKDIV_Msk (0xFFU << SDIO_CLKCR_CLKDIV_Pos) /*!< 0x000000FF */ |
|
3546 | #define SDIO_CLKCR_CLKDIV ((uint32_t)0x00FF) /*!< Clock divide factor */ |
5800 | #define SDIO_CLKCR_CLKDIV SDIO_CLKCR_CLKDIV_Msk /*!< Clock divide factor */ |
- | 5801 | #define SDIO_CLKCR_CLKEN_Pos (8U) |
|
- | 5802 | #define SDIO_CLKCR_CLKEN_Msk (0x1U << SDIO_CLKCR_CLKEN_Pos) /*!< 0x00000100 */ |
|
3547 | #define SDIO_CLKCR_CLKEN ((uint32_t)0x0100) /*!< Clock enable bit */ |
5803 | #define SDIO_CLKCR_CLKEN SDIO_CLKCR_CLKEN_Msk /*!< Clock enable bit */ |
- | 5804 | #define SDIO_CLKCR_PWRSAV_Pos (9U) |
|
- | 5805 | #define SDIO_CLKCR_PWRSAV_Msk (0x1U << SDIO_CLKCR_PWRSAV_Pos) /*!< 0x00000200 */ |
|
3548 | #define SDIO_CLKCR_PWRSAV ((uint32_t)0x0200) /*!< Power saving configuration bit */ |
5806 | #define SDIO_CLKCR_PWRSAV SDIO_CLKCR_PWRSAV_Msk /*!< Power saving configuration bit */ |
- | 5807 | #define SDIO_CLKCR_BYPASS_Pos (10U) |
|
- | 5808 | #define SDIO_CLKCR_BYPASS_Msk (0x1U << SDIO_CLKCR_BYPASS_Pos) /*!< 0x00000400 */ |
|
3549 | #define SDIO_CLKCR_BYPASS ((uint32_t)0x0400) /*!< Clock divider bypass enable bit */ |
5809 | #define SDIO_CLKCR_BYPASS SDIO_CLKCR_BYPASS_Msk /*!< Clock divider bypass enable bit */ |
3550 | 5810 | ||
- | 5811 | #define SDIO_CLKCR_WIDBUS_Pos (11U) |
|
- | 5812 | #define SDIO_CLKCR_WIDBUS_Msk (0x3U << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x00001800 */ |
|
3551 | #define SDIO_CLKCR_WIDBUS ((uint32_t)0x1800) /*!< WIDBUS[1:0] bits (Wide bus mode enable bit) */ |
5813 | #define SDIO_CLKCR_WIDBUS SDIO_CLKCR_WIDBUS_Msk /*!< WIDBUS[1:0] bits (Wide bus mode enable bit) */ |
3552 | #define SDIO_CLKCR_WIDBUS_0 ((uint32_t)0x0800) /*!< Bit 0 */ |
5814 | #define SDIO_CLKCR_WIDBUS_0 (0x1U << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x0800 */ |
3553 | #define SDIO_CLKCR_WIDBUS_1 ((uint32_t)0x1000) /*!< Bit 1 */ |
5815 | #define SDIO_CLKCR_WIDBUS_1 (0x2U << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x1000 */ |
3554 | 5816 | ||
- | 5817 | #define SDIO_CLKCR_NEGEDGE_Pos (13U) |
|
- | 5818 | #define SDIO_CLKCR_NEGEDGE_Msk (0x1U << SDIO_CLKCR_NEGEDGE_Pos) /*!< 0x00002000 */ |
|
3555 | #define SDIO_CLKCR_NEGEDGE ((uint32_t)0x2000) /*!< SDIO_CK dephasing selection bit */ |
5819 | #define SDIO_CLKCR_NEGEDGE SDIO_CLKCR_NEGEDGE_Msk /*!< SDIO_CK dephasing selection bit */ |
- | 5820 | #define SDIO_CLKCR_HWFC_EN_Pos (14U) |
|
- | 5821 | #define SDIO_CLKCR_HWFC_EN_Msk (0x1U << SDIO_CLKCR_HWFC_EN_Pos) /*!< 0x00004000 */ |
|
3556 | #define SDIO_CLKCR_HWFC_EN ((uint32_t)0x4000) /*!< HW Flow Control enable */ |
5822 | #define SDIO_CLKCR_HWFC_EN SDIO_CLKCR_HWFC_EN_Msk /*!< HW Flow Control enable */ |
3557 | 5823 | ||
3558 | /******************* Bit definition for SDIO_ARG register *******************/ |
5824 | /******************* Bit definition for SDIO_ARG register *******************/ |
- | 5825 | #define SDIO_ARG_CMDARG_Pos (0U) |
|
- | 5826 | #define SDIO_ARG_CMDARG_Msk (0xFFFFFFFFU << SDIO_ARG_CMDARG_Pos) /*!< 0xFFFFFFFF */ |
|
3559 | #define SDIO_ARG_CMDARG ((uint32_t)0xFFFFFFFF) /*!< Command argument */ |
5827 | #define SDIO_ARG_CMDARG SDIO_ARG_CMDARG_Msk /*!< Command argument */ |
3560 | 5828 | ||
3561 | /******************* Bit definition for SDIO_CMD register *******************/ |
5829 | /******************* Bit definition for SDIO_CMD register *******************/ |
- | 5830 | #define SDIO_CMD_CMDINDEX_Pos (0U) |
|
- | 5831 | #define SDIO_CMD_CMDINDEX_Msk (0x3FU << SDIO_CMD_CMDINDEX_Pos) /*!< 0x0000003F */ |
|
3562 | #define SDIO_CMD_CMDINDEX ((uint32_t)0x003F) /*!< Command Index */ |
5832 | #define SDIO_CMD_CMDINDEX SDIO_CMD_CMDINDEX_Msk /*!< Command Index */ |
3563 | 5833 | ||
- | 5834 | #define SDIO_CMD_WAITRESP_Pos (6U) |
|
- | 5835 | #define SDIO_CMD_WAITRESP_Msk (0x3U << SDIO_CMD_WAITRESP_Pos) /*!< 0x000000C0 */ |
|
3564 | #define SDIO_CMD_WAITRESP ((uint32_t)0x00C0) /*!< WAITRESP[1:0] bits (Wait for response bits) */ |
5836 | #define SDIO_CMD_WAITRESP SDIO_CMD_WAITRESP_Msk /*!< WAITRESP[1:0] bits (Wait for response bits) */ |
3565 | #define SDIO_CMD_WAITRESP_0 ((uint32_t)0x0040) /*!< Bit 0 */ |
5837 | #define SDIO_CMD_WAITRESP_0 (0x1U << SDIO_CMD_WAITRESP_Pos) /*!< 0x0040 */ |
3566 | #define SDIO_CMD_WAITRESP_1 ((uint32_t)0x0080) /*!< Bit 1 */ |
5838 | #define SDIO_CMD_WAITRESP_1 (0x2U << SDIO_CMD_WAITRESP_Pos) /*!< 0x0080 */ |
3567 | 5839 | ||
- | 5840 | #define SDIO_CMD_WAITINT_Pos (8U) |
|
- | 5841 | #define SDIO_CMD_WAITINT_Msk (0x1U << SDIO_CMD_WAITINT_Pos) /*!< 0x00000100 */ |
|
3568 | #define SDIO_CMD_WAITINT ((uint32_t)0x0100) /*!< CPSM Waits for Interrupt Request */ |
5842 | #define SDIO_CMD_WAITINT SDIO_CMD_WAITINT_Msk /*!< CPSM Waits for Interrupt Request */ |
- | 5843 | #define SDIO_CMD_WAITPEND_Pos (9U) |
|
- | 5844 | #define SDIO_CMD_WAITPEND_Msk (0x1U << SDIO_CMD_WAITPEND_Pos) /*!< 0x00000200 */ |
|
3569 | #define SDIO_CMD_WAITPEND ((uint32_t)0x0200) /*!< CPSM Waits for ends of data transfer (CmdPend internal signal) */ |
5845 | #define SDIO_CMD_WAITPEND SDIO_CMD_WAITPEND_Msk /*!< CPSM Waits for ends of data transfer (CmdPend internal signal) */ |
- | 5846 | #define SDIO_CMD_CPSMEN_Pos (10U) |
|
- | 5847 | #define SDIO_CMD_CPSMEN_Msk (0x1U << SDIO_CMD_CPSMEN_Pos) /*!< 0x00000400 */ |
|
3570 | #define SDIO_CMD_CPSMEN ((uint32_t)0x0400) /*!< Command path state machine (CPSM) Enable bit */ |
5848 | #define SDIO_CMD_CPSMEN SDIO_CMD_CPSMEN_Msk /*!< Command path state machine (CPSM) Enable bit */ |
- | 5849 | #define SDIO_CMD_SDIOSUSPEND_Pos (11U) |
|
- | 5850 | #define SDIO_CMD_SDIOSUSPEND_Msk (0x1U << SDIO_CMD_SDIOSUSPEND_Pos) /*!< 0x00000800 */ |
|
3571 | #define SDIO_CMD_SDIOSUSPEND ((uint32_t)0x0800) /*!< SD I/O suspend command */ |
5851 | #define SDIO_CMD_SDIOSUSPEND SDIO_CMD_SDIOSUSPEND_Msk /*!< SD I/O suspend command */ |
- | 5852 | #define SDIO_CMD_ENCMDCOMPL_Pos (12U) |
|
- | 5853 | #define SDIO_CMD_ENCMDCOMPL_Msk (0x1U << SDIO_CMD_ENCMDCOMPL_Pos) /*!< 0x00001000 */ |
|
3572 | #define SDIO_CMD_ENCMDCOMPL ((uint32_t)0x1000) /*!< Enable CMD completion */ |
5854 | #define SDIO_CMD_ENCMDCOMPL SDIO_CMD_ENCMDCOMPL_Msk /*!< Enable CMD completion */ |
- | 5855 | #define SDIO_CMD_NIEN_Pos (13U) |
|
- | 5856 | #define SDIO_CMD_NIEN_Msk (0x1U << SDIO_CMD_NIEN_Pos) /*!< 0x00002000 */ |
|
3573 | #define SDIO_CMD_NIEN ((uint32_t)0x2000) /*!< Not Interrupt Enable */ |
5857 | #define SDIO_CMD_NIEN SDIO_CMD_NIEN_Msk /*!< Not Interrupt Enable */ |
- | 5858 | #define SDIO_CMD_CEATACMD_Pos (14U) |
|
- | 5859 | #define SDIO_CMD_CEATACMD_Msk (0x1U << SDIO_CMD_CEATACMD_Pos) /*!< 0x00004000 */ |
|
3574 | #define SDIO_CMD_CEATACMD ((uint32_t)0x4000) /*!< CE-ATA command */ |
5860 | #define SDIO_CMD_CEATACMD SDIO_CMD_CEATACMD_Msk /*!< CE-ATA command */ |
3575 | 5861 | ||
3576 | /***************** Bit definition for SDIO_RESPCMD register *****************/ |
5862 | /***************** Bit definition for SDIO_RESPCMD register *****************/ |
- | 5863 | #define SDIO_RESPCMD_RESPCMD_Pos (0U) |
|
- | 5864 | #define SDIO_RESPCMD_RESPCMD_Msk (0x3FU << SDIO_RESPCMD_RESPCMD_Pos) /*!< 0x0000003F */ |
|
3577 | #define SDIO_RESPCMD_RESPCMD ((uint32_t)0x3F) /*!< Response command index */ |
5865 | #define SDIO_RESPCMD_RESPCMD SDIO_RESPCMD_RESPCMD_Msk /*!< Response command index */ |
3578 | 5866 | ||
3579 | /****************** Bit definition for SDIO_RESP0 register ******************/ |
5867 | /****************** Bit definition for SDIO_RESP0 register ******************/ |
- | 5868 | #define SDIO_RESP0_CARDSTATUS0_Pos (0U) |
|
- | 5869 | #define SDIO_RESP0_CARDSTATUS0_Msk (0xFFFFFFFFU << SDIO_RESP0_CARDSTATUS0_Pos) /*!< 0xFFFFFFFF */ |
|
3580 | #define SDIO_RESP0_CARDSTATUS0 ((uint32_t)0xFFFFFFFF) /*!< Card Status */ |
5870 | #define SDIO_RESP0_CARDSTATUS0 SDIO_RESP0_CARDSTATUS0_Msk /*!< Card Status */ |
3581 | 5871 | ||
3582 | /****************** Bit definition for SDIO_RESP1 register ******************/ |
5872 | /****************** Bit definition for SDIO_RESP1 register ******************/ |
- | 5873 | #define SDIO_RESP1_CARDSTATUS1_Pos (0U) |
|
- | 5874 | #define SDIO_RESP1_CARDSTATUS1_Msk (0xFFFFFFFFU << SDIO_RESP1_CARDSTATUS1_Pos) /*!< 0xFFFFFFFF */ |
|
3583 | #define SDIO_RESP1_CARDSTATUS1 ((uint32_t)0xFFFFFFFF) /*!< Card Status */ |
5875 | #define SDIO_RESP1_CARDSTATUS1 SDIO_RESP1_CARDSTATUS1_Msk /*!< Card Status */ |
3584 | 5876 | ||
3585 | /****************** Bit definition for SDIO_RESP2 register ******************/ |
5877 | /****************** Bit definition for SDIO_RESP2 register ******************/ |
- | 5878 | #define SDIO_RESP2_CARDSTATUS2_Pos (0U) |
|
- | 5879 | #define SDIO_RESP2_CARDSTATUS2_Msk (0xFFFFFFFFU << SDIO_RESP2_CARDSTATUS2_Pos) /*!< 0xFFFFFFFF */ |
|
3586 | #define SDIO_RESP2_CARDSTATUS2 ((uint32_t)0xFFFFFFFF) /*!< Card Status */ |
5880 | #define SDIO_RESP2_CARDSTATUS2 SDIO_RESP2_CARDSTATUS2_Msk /*!< Card Status */ |
3587 | 5881 | ||
3588 | /****************** Bit definition for SDIO_RESP3 register ******************/ |
5882 | /****************** Bit definition for SDIO_RESP3 register ******************/ |
- | 5883 | #define SDIO_RESP3_CARDSTATUS3_Pos (0U) |
|
- | 5884 | #define SDIO_RESP3_CARDSTATUS3_Msk (0xFFFFFFFFU << SDIO_RESP3_CARDSTATUS3_Pos) /*!< 0xFFFFFFFF */ |
|
3589 | #define SDIO_RESP3_CARDSTATUS3 ((uint32_t)0xFFFFFFFF) /*!< Card Status */ |
5885 | #define SDIO_RESP3_CARDSTATUS3 SDIO_RESP3_CARDSTATUS3_Msk /*!< Card Status */ |
3590 | 5886 | ||
3591 | /****************** Bit definition for SDIO_RESP4 register ******************/ |
5887 | /****************** Bit definition for SDIO_RESP4 register ******************/ |
- | 5888 | #define SDIO_RESP4_CARDSTATUS4_Pos (0U) |
|
- | 5889 | #define SDIO_RESP4_CARDSTATUS4_Msk (0xFFFFFFFFU << SDIO_RESP4_CARDSTATUS4_Pos) /*!< 0xFFFFFFFF */ |
|
3592 | #define SDIO_RESP4_CARDSTATUS4 ((uint32_t)0xFFFFFFFF) /*!< Card Status */ |
5890 | #define SDIO_RESP4_CARDSTATUS4 SDIO_RESP4_CARDSTATUS4_Msk /*!< Card Status */ |
3593 | 5891 | ||
3594 | /****************** Bit definition for SDIO_DTIMER register *****************/ |
5892 | /****************** Bit definition for SDIO_DTIMER register *****************/ |
- | 5893 | #define SDIO_DTIMER_DATATIME_Pos (0U) |
|
- | 5894 | #define SDIO_DTIMER_DATATIME_Msk (0xFFFFFFFFU << SDIO_DTIMER_DATATIME_Pos) /*!< 0xFFFFFFFF */ |
|
3595 | #define SDIO_DTIMER_DATATIME ((uint32_t)0xFFFFFFFF) /*!< Data timeout period. */ |
5895 | #define SDIO_DTIMER_DATATIME SDIO_DTIMER_DATATIME_Msk /*!< Data timeout period. */ |
3596 | 5896 | ||
3597 | /****************** Bit definition for SDIO_DLEN register *******************/ |
5897 | /****************** Bit definition for SDIO_DLEN register *******************/ |
- | 5898 | #define SDIO_DLEN_DATALENGTH_Pos (0U) |
|
- | 5899 | #define SDIO_DLEN_DATALENGTH_Msk (0x1FFFFFFU << SDIO_DLEN_DATALENGTH_Pos) /*!< 0x01FFFFFF */ |
|
3598 | #define SDIO_DLEN_DATALENGTH ((uint32_t)0x01FFFFFF) /*!< Data length value */ |
5900 | #define SDIO_DLEN_DATALENGTH SDIO_DLEN_DATALENGTH_Msk /*!< Data length value */ |
3599 | 5901 | ||
3600 | /****************** Bit definition for SDIO_DCTRL register ******************/ |
5902 | /****************** Bit definition for SDIO_DCTRL register ******************/ |
- | 5903 | #define SDIO_DCTRL_DTEN_Pos (0U) |
|
- | 5904 | #define SDIO_DCTRL_DTEN_Msk (0x1U << SDIO_DCTRL_DTEN_Pos) /*!< 0x00000001 */ |
|
3601 | #define SDIO_DCTRL_DTEN ((uint32_t)0x0001) /*!< Data transfer enabled bit */ |
5905 | #define SDIO_DCTRL_DTEN SDIO_DCTRL_DTEN_Msk /*!< Data transfer enabled bit */ |
- | 5906 | #define SDIO_DCTRL_DTDIR_Pos (1U) |
|
- | 5907 | #define SDIO_DCTRL_DTDIR_Msk (0x1U << SDIO_DCTRL_DTDIR_Pos) /*!< 0x00000002 */ |
|
3602 | #define SDIO_DCTRL_DTDIR ((uint32_t)0x0002) /*!< Data transfer direction selection */ |
5908 | #define SDIO_DCTRL_DTDIR SDIO_DCTRL_DTDIR_Msk /*!< Data transfer direction selection */ |
- | 5909 | #define SDIO_DCTRL_DTMODE_Pos (2U) |
|
- | 5910 | #define SDIO_DCTRL_DTMODE_Msk (0x1U << SDIO_DCTRL_DTMODE_Pos) /*!< 0x00000004 */ |
|
3603 | #define SDIO_DCTRL_DTMODE ((uint32_t)0x0004) /*!< Data transfer mode selection */ |
5911 | #define SDIO_DCTRL_DTMODE SDIO_DCTRL_DTMODE_Msk /*!< Data transfer mode selection */ |
- | 5912 | #define SDIO_DCTRL_DMAEN_Pos (3U) |
|
- | 5913 | #define SDIO_DCTRL_DMAEN_Msk (0x1U << SDIO_DCTRL_DMAEN_Pos) /*!< 0x00000008 */ |
|
3604 | #define SDIO_DCTRL_DMAEN ((uint32_t)0x0008) /*!< DMA enabled bit */ |
5914 | #define SDIO_DCTRL_DMAEN SDIO_DCTRL_DMAEN_Msk /*!< DMA enabled bit */ |
3605 | 5915 | ||
- | 5916 | #define SDIO_DCTRL_DBLOCKSIZE_Pos (4U) |
|
- | 5917 | #define SDIO_DCTRL_DBLOCKSIZE_Msk (0xFU << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x000000F0 */ |
|
3606 | #define SDIO_DCTRL_DBLOCKSIZE ((uint32_t)0x00F0) /*!< DBLOCKSIZE[3:0] bits (Data block size) */ |
5918 | #define SDIO_DCTRL_DBLOCKSIZE SDIO_DCTRL_DBLOCKSIZE_Msk /*!< DBLOCKSIZE[3:0] bits (Data block size) */ |
3607 | #define SDIO_DCTRL_DBLOCKSIZE_0 ((uint32_t)0x0010) /*!< Bit 0 */ |
5919 | #define SDIO_DCTRL_DBLOCKSIZE_0 (0x1U << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0010 */ |
3608 | #define SDIO_DCTRL_DBLOCKSIZE_1 ((uint32_t)0x0020) /*!< Bit 1 */ |
5920 | #define SDIO_DCTRL_DBLOCKSIZE_1 (0x2U << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0020 */ |
3609 | #define SDIO_DCTRL_DBLOCKSIZE_2 ((uint32_t)0x0040) /*!< Bit 2 */ |
5921 | #define SDIO_DCTRL_DBLOCKSIZE_2 (0x4U << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0040 */ |
3610 | #define SDIO_DCTRL_DBLOCKSIZE_3 ((uint32_t)0x0080) /*!< Bit 3 */ |
5922 | #define SDIO_DCTRL_DBLOCKSIZE_3 (0x8U << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0080 */ |
3611 | 5923 | ||
- | 5924 | #define SDIO_DCTRL_RWSTART_Pos (8U) |
|
- | 5925 | #define SDIO_DCTRL_RWSTART_Msk (0x1U << SDIO_DCTRL_RWSTART_Pos) /*!< 0x00000100 */ |
|
3612 | #define SDIO_DCTRL_RWSTART ((uint32_t)0x0100) /*!< Read wait start */ |
5926 | #define SDIO_DCTRL_RWSTART SDIO_DCTRL_RWSTART_Msk /*!< Read wait start */ |
- | 5927 | #define SDIO_DCTRL_RWSTOP_Pos (9U) |
|
- | 5928 | #define SDIO_DCTRL_RWSTOP_Msk (0x1U << SDIO_DCTRL_RWSTOP_Pos) /*!< 0x00000200 */ |
|
3613 | #define SDIO_DCTRL_RWSTOP ((uint32_t)0x0200) /*!< Read wait stop */ |
5929 | #define SDIO_DCTRL_RWSTOP SDIO_DCTRL_RWSTOP_Msk /*!< Read wait stop */ |
- | 5930 | #define SDIO_DCTRL_RWMOD_Pos (10U) |
|
- | 5931 | #define SDIO_DCTRL_RWMOD_Msk (0x1U << SDIO_DCTRL_RWMOD_Pos) /*!< 0x00000400 */ |
|
3614 | #define SDIO_DCTRL_RWMOD ((uint32_t)0x0400) /*!< Read wait mode */ |
5932 | #define SDIO_DCTRL_RWMOD SDIO_DCTRL_RWMOD_Msk /*!< Read wait mode */ |
- | 5933 | #define SDIO_DCTRL_SDIOEN_Pos (11U) |
|
- | 5934 | #define SDIO_DCTRL_SDIOEN_Msk (0x1U << SDIO_DCTRL_SDIOEN_Pos) /*!< 0x00000800 */ |
|
3615 | #define SDIO_DCTRL_SDIOEN ((uint32_t)0x0800) /*!< SD I/O enable functions */ |
5935 | #define SDIO_DCTRL_SDIOEN SDIO_DCTRL_SDIOEN_Msk /*!< SD I/O enable functions */ |
3616 | 5936 | ||
3617 | /****************** Bit definition for SDIO_DCOUNT register *****************/ |
5937 | /****************** Bit definition for SDIO_DCOUNT register *****************/ |
- | 5938 | #define SDIO_DCOUNT_DATACOUNT_Pos (0U) |
|
- | 5939 | #define SDIO_DCOUNT_DATACOUNT_Msk (0x1FFFFFFU << SDIO_DCOUNT_DATACOUNT_Pos) /*!< 0x01FFFFFF */ |
|
3618 | #define SDIO_DCOUNT_DATACOUNT ((uint32_t)0x01FFFFFF) /*!< Data count value */ |
5940 | #define SDIO_DCOUNT_DATACOUNT SDIO_DCOUNT_DATACOUNT_Msk /*!< Data count value */ |
3619 | 5941 | ||
3620 | /****************** Bit definition for SDIO_STA register ********************/ |
5942 | /****************** Bit definition for SDIO_STA register ********************/ |
- | 5943 | #define SDIO_STA_CCRCFAIL_Pos (0U) |
|
- | 5944 | #define SDIO_STA_CCRCFAIL_Msk (0x1U << SDIO_STA_CCRCFAIL_Pos) /*!< 0x00000001 */ |
|
3621 | #define SDIO_STA_CCRCFAIL ((uint32_t)0x00000001) /*!< Command response received (CRC check failed) */ |
5945 | #define SDIO_STA_CCRCFAIL SDIO_STA_CCRCFAIL_Msk /*!< Command response received (CRC check failed) */ |
- | 5946 | #define SDIO_STA_DCRCFAIL_Pos (1U) |
|
- | 5947 | #define SDIO_STA_DCRCFAIL_Msk (0x1U << SDIO_STA_DCRCFAIL_Pos) /*!< 0x00000002 */ |
|
3622 | #define SDIO_STA_DCRCFAIL ((uint32_t)0x00000002) /*!< Data block sent/received (CRC check failed) */ |
5948 | #define SDIO_STA_DCRCFAIL SDIO_STA_DCRCFAIL_Msk /*!< Data block sent/received (CRC check failed) */ |
- | 5949 | #define SDIO_STA_CTIMEOUT_Pos (2U) |
|
- | 5950 | #define SDIO_STA_CTIMEOUT_Msk (0x1U << SDIO_STA_CTIMEOUT_Pos) /*!< 0x00000004 */ |
|
3623 | #define SDIO_STA_CTIMEOUT ((uint32_t)0x00000004) /*!< Command response timeout */ |
5951 | #define SDIO_STA_CTIMEOUT SDIO_STA_CTIMEOUT_Msk /*!< Command response timeout */ |
- | 5952 | #define SDIO_STA_DTIMEOUT_Pos (3U) |
|
- | 5953 | #define SDIO_STA_DTIMEOUT_Msk (0x1U << SDIO_STA_DTIMEOUT_Pos) /*!< 0x00000008 */ |
|
3624 | #define SDIO_STA_DTIMEOUT ((uint32_t)0x00000008) /*!< Data timeout */ |
5954 | #define SDIO_STA_DTIMEOUT SDIO_STA_DTIMEOUT_Msk /*!< Data timeout */ |
- | 5955 | #define SDIO_STA_TXUNDERR_Pos (4U) |
|
- | 5956 | #define SDIO_STA_TXUNDERR_Msk (0x1U << SDIO_STA_TXUNDERR_Pos) /*!< 0x00000010 */ |
|
3625 | #define SDIO_STA_TXUNDERR ((uint32_t)0x00000010) /*!< Transmit FIFO underrun error */ |
5957 | #define SDIO_STA_TXUNDERR SDIO_STA_TXUNDERR_Msk /*!< Transmit FIFO underrun error */ |
- | 5958 | #define SDIO_STA_RXOVERR_Pos (5U) |
|
- | 5959 | #define SDIO_STA_RXOVERR_Msk (0x1U << SDIO_STA_RXOVERR_Pos) /*!< 0x00000020 */ |
|
3626 | #define SDIO_STA_RXOVERR ((uint32_t)0x00000020) /*!< Received FIFO overrun error */ |
5960 | #define SDIO_STA_RXOVERR SDIO_STA_RXOVERR_Msk /*!< Received FIFO overrun error */ |
- | 5961 | #define SDIO_STA_CMDREND_Pos (6U) |
|
- | 5962 | #define SDIO_STA_CMDREND_Msk (0x1U << SDIO_STA_CMDREND_Pos) /*!< 0x00000040 */ |
|
3627 | #define SDIO_STA_CMDREND ((uint32_t)0x00000040) /*!< Command response received (CRC check passed) */ |
5963 | #define SDIO_STA_CMDREND SDIO_STA_CMDREND_Msk /*!< Command response received (CRC check passed) */ |
- | 5964 | #define SDIO_STA_CMDSENT_Pos (7U) |
|
- | 5965 | #define SDIO_STA_CMDSENT_Msk (0x1U << SDIO_STA_CMDSENT_Pos) /*!< 0x00000080 */ |
|
3628 | #define SDIO_STA_CMDSENT ((uint32_t)0x00000080) /*!< Command sent (no response required) */ |
5966 | #define SDIO_STA_CMDSENT SDIO_STA_CMDSENT_Msk /*!< Command sent (no response required) */ |
- | 5967 | #define SDIO_STA_DATAEND_Pos (8U) |
|
- | 5968 | #define SDIO_STA_DATAEND_Msk (0x1U << SDIO_STA_DATAEND_Pos) /*!< 0x00000100 */ |
|
3629 | #define SDIO_STA_DATAEND ((uint32_t)0x00000100) /*!< Data end (data counter, SDIDCOUNT, is zero) */ |
5969 | #define SDIO_STA_DATAEND SDIO_STA_DATAEND_Msk /*!< Data end (data counter, SDIDCOUNT, is zero) */ |
- | 5970 | #define SDIO_STA_STBITERR_Pos (9U) |
|
- | 5971 | #define SDIO_STA_STBITERR_Msk (0x1U << SDIO_STA_STBITERR_Pos) /*!< 0x00000200 */ |
|
3630 | #define SDIO_STA_STBITERR ((uint32_t)0x00000200) /*!< Start bit not detected on all data signals in wide bus mode */ |
5972 | #define SDIO_STA_STBITERR SDIO_STA_STBITERR_Msk /*!< Start bit not detected on all data signals in wide bus mode */ |
- | 5973 | #define SDIO_STA_DBCKEND_Pos (10U) |
|
- | 5974 | #define SDIO_STA_DBCKEND_Msk (0x1U << SDIO_STA_DBCKEND_Pos) /*!< 0x00000400 */ |
|
3631 | #define SDIO_STA_DBCKEND ((uint32_t)0x00000400) /*!< Data block sent/received (CRC check passed) */ |
5975 | #define SDIO_STA_DBCKEND SDIO_STA_DBCKEND_Msk /*!< Data block sent/received (CRC check passed) */ |
- | 5976 | #define SDIO_STA_CMDACT_Pos (11U) |
|
- | 5977 | #define SDIO_STA_CMDACT_Msk (0x1U << SDIO_STA_CMDACT_Pos) /*!< 0x00000800 */ |
|
3632 | #define SDIO_STA_CMDACT ((uint32_t)0x00000800) /*!< Command transfer in progress */ |
5978 | #define SDIO_STA_CMDACT SDIO_STA_CMDACT_Msk /*!< Command transfer in progress */ |
- | 5979 | #define SDIO_STA_TXACT_Pos (12U) |
|
- | 5980 | #define SDIO_STA_TXACT_Msk (0x1U << SDIO_STA_TXACT_Pos) /*!< 0x00001000 */ |
|
3633 | #define SDIO_STA_TXACT ((uint32_t)0x00001000) /*!< Data transmit in progress */ |
5981 | #define SDIO_STA_TXACT SDIO_STA_TXACT_Msk /*!< Data transmit in progress */ |
- | 5982 | #define SDIO_STA_RXACT_Pos (13U) |
|
- | 5983 | #define SDIO_STA_RXACT_Msk (0x1U << SDIO_STA_RXACT_Pos) /*!< 0x00002000 */ |
|
3634 | #define SDIO_STA_RXACT ((uint32_t)0x00002000) /*!< Data receive in progress */ |
5984 | #define SDIO_STA_RXACT SDIO_STA_RXACT_Msk /*!< Data receive in progress */ |
- | 5985 | #define SDIO_STA_TXFIFOHE_Pos (14U) |
|
- | 5986 | #define SDIO_STA_TXFIFOHE_Msk (0x1U << SDIO_STA_TXFIFOHE_Pos) /*!< 0x00004000 */ |
|
3635 | #define SDIO_STA_TXFIFOHE ((uint32_t)0x00004000) /*!< Transmit FIFO Half Empty: at least 8 words can be written into the FIFO */ |
5987 | #define SDIO_STA_TXFIFOHE SDIO_STA_TXFIFOHE_Msk /*!< Transmit FIFO Half Empty: at least 8 words can be written into the FIFO */ |
- | 5988 | #define SDIO_STA_RXFIFOHF_Pos (15U) |
|
- | 5989 | #define SDIO_STA_RXFIFOHF_Msk (0x1U << SDIO_STA_RXFIFOHF_Pos) /*!< 0x00008000 */ |
|
3636 | #define SDIO_STA_RXFIFOHF ((uint32_t)0x00008000) /*!< Receive FIFO Half Full: there are at least 8 words in the FIFO */ |
5990 | #define SDIO_STA_RXFIFOHF SDIO_STA_RXFIFOHF_Msk /*!< Receive FIFO Half Full: there are at least 8 words in the FIFO */ |
- | 5991 | #define SDIO_STA_TXFIFOF_Pos (16U) |
|
- | 5992 | #define SDIO_STA_TXFIFOF_Msk (0x1U << SDIO_STA_TXFIFOF_Pos) /*!< 0x00010000 */ |
|
3637 | #define SDIO_STA_TXFIFOF ((uint32_t)0x00010000) /*!< Transmit FIFO full */ |
5993 | #define SDIO_STA_TXFIFOF SDIO_STA_TXFIFOF_Msk /*!< Transmit FIFO full */ |
- | 5994 | #define SDIO_STA_RXFIFOF_Pos (17U) |
|
- | 5995 | #define SDIO_STA_RXFIFOF_Msk (0x1U << SDIO_STA_RXFIFOF_Pos) /*!< 0x00020000 */ |
|
3638 | #define SDIO_STA_RXFIFOF ((uint32_t)0x00020000) /*!< Receive FIFO full */ |
5996 | #define SDIO_STA_RXFIFOF SDIO_STA_RXFIFOF_Msk /*!< Receive FIFO full */ |
- | 5997 | #define SDIO_STA_TXFIFOE_Pos (18U) |
|
- | 5998 | #define SDIO_STA_TXFIFOE_Msk (0x1U << SDIO_STA_TXFIFOE_Pos) /*!< 0x00040000 */ |
|
3639 | #define SDIO_STA_TXFIFOE ((uint32_t)0x00040000) /*!< Transmit FIFO empty */ |
5999 | #define SDIO_STA_TXFIFOE SDIO_STA_TXFIFOE_Msk /*!< Transmit FIFO empty */ |
- | 6000 | #define SDIO_STA_RXFIFOE_Pos (19U) |
|
- | 6001 | #define SDIO_STA_RXFIFOE_Msk (0x1U << SDIO_STA_RXFIFOE_Pos) /*!< 0x00080000 */ |
|
3640 | #define SDIO_STA_RXFIFOE ((uint32_t)0x00080000) /*!< Receive FIFO empty */ |
6002 | #define SDIO_STA_RXFIFOE SDIO_STA_RXFIFOE_Msk /*!< Receive FIFO empty */ |
- | 6003 | #define SDIO_STA_TXDAVL_Pos (20U) |
|
- | 6004 | #define SDIO_STA_TXDAVL_Msk (0x1U << SDIO_STA_TXDAVL_Pos) /*!< 0x00100000 */ |
|
3641 | #define SDIO_STA_TXDAVL ((uint32_t)0x00100000) /*!< Data available in transmit FIFO */ |
6005 | #define SDIO_STA_TXDAVL SDIO_STA_TXDAVL_Msk /*!< Data available in transmit FIFO */ |
- | 6006 | #define SDIO_STA_RXDAVL_Pos (21U) |
|
- | 6007 | #define SDIO_STA_RXDAVL_Msk (0x1U << SDIO_STA_RXDAVL_Pos) /*!< 0x00200000 */ |
|
3642 | #define SDIO_STA_RXDAVL ((uint32_t)0x00200000) /*!< Data available in receive FIFO */ |
6008 | #define SDIO_STA_RXDAVL SDIO_STA_RXDAVL_Msk /*!< Data available in receive FIFO */ |
- | 6009 | #define SDIO_STA_SDIOIT_Pos (22U) |
|
- | 6010 | #define SDIO_STA_SDIOIT_Msk (0x1U << SDIO_STA_SDIOIT_Pos) /*!< 0x00400000 */ |
|
3643 | #define SDIO_STA_SDIOIT ((uint32_t)0x00400000) /*!< SDIO interrupt received */ |
6011 | #define SDIO_STA_SDIOIT SDIO_STA_SDIOIT_Msk /*!< SDIO interrupt received */ |
- | 6012 | #define SDIO_STA_CEATAEND_Pos (23U) |
|
- | 6013 | #define SDIO_STA_CEATAEND_Msk (0x1U << SDIO_STA_CEATAEND_Pos) /*!< 0x00800000 */ |
|
3644 | #define SDIO_STA_CEATAEND ((uint32_t)0x00800000) /*!< CE-ATA command completion signal received for CMD61 */ |
6014 | #define SDIO_STA_CEATAEND SDIO_STA_CEATAEND_Msk /*!< CE-ATA command completion signal received for CMD61 */ |
3645 | 6015 | ||
3646 | /******************* Bit definition for SDIO_ICR register *******************/ |
6016 | /******************* Bit definition for SDIO_ICR register *******************/ |
- | 6017 | #define SDIO_ICR_CCRCFAILC_Pos (0U) |
|
- | 6018 | #define SDIO_ICR_CCRCFAILC_Msk (0x1U << SDIO_ICR_CCRCFAILC_Pos) /*!< 0x00000001 */ |
|
3647 | #define SDIO_ICR_CCRCFAILC ((uint32_t)0x00000001) /*!< CCRCFAIL flag clear bit */ |
6019 | #define SDIO_ICR_CCRCFAILC SDIO_ICR_CCRCFAILC_Msk /*!< CCRCFAIL flag clear bit */ |
- | 6020 | #define SDIO_ICR_DCRCFAILC_Pos (1U) |
|
- | 6021 | #define SDIO_ICR_DCRCFAILC_Msk (0x1U << SDIO_ICR_DCRCFAILC_Pos) /*!< 0x00000002 */ |
|
3648 | #define SDIO_ICR_DCRCFAILC ((uint32_t)0x00000002) /*!< DCRCFAIL flag clear bit */ |
6022 | #define SDIO_ICR_DCRCFAILC SDIO_ICR_DCRCFAILC_Msk /*!< DCRCFAIL flag clear bit */ |
- | 6023 | #define SDIO_ICR_CTIMEOUTC_Pos (2U) |
|
- | 6024 | #define SDIO_ICR_CTIMEOUTC_Msk (0x1U << SDIO_ICR_CTIMEOUTC_Pos) /*!< 0x00000004 */ |
|
3649 | #define SDIO_ICR_CTIMEOUTC ((uint32_t)0x00000004) /*!< CTIMEOUT flag clear bit */ |
6025 | #define SDIO_ICR_CTIMEOUTC SDIO_ICR_CTIMEOUTC_Msk /*!< CTIMEOUT flag clear bit */ |
- | 6026 | #define SDIO_ICR_DTIMEOUTC_Pos (3U) |
|
- | 6027 | #define SDIO_ICR_DTIMEOUTC_Msk (0x1U << SDIO_ICR_DTIMEOUTC_Pos) /*!< 0x00000008 */ |
|
3650 | #define SDIO_ICR_DTIMEOUTC ((uint32_t)0x00000008) /*!< DTIMEOUT flag clear bit */ |
6028 | #define SDIO_ICR_DTIMEOUTC SDIO_ICR_DTIMEOUTC_Msk /*!< DTIMEOUT flag clear bit */ |
- | 6029 | #define SDIO_ICR_TXUNDERRC_Pos (4U) |
|
- | 6030 | #define SDIO_ICR_TXUNDERRC_Msk (0x1U << SDIO_ICR_TXUNDERRC_Pos) /*!< 0x00000010 */ |
|
3651 | #define SDIO_ICR_TXUNDERRC ((uint32_t)0x00000010) /*!< TXUNDERR flag clear bit */ |
6031 | #define SDIO_ICR_TXUNDERRC SDIO_ICR_TXUNDERRC_Msk /*!< TXUNDERR flag clear bit */ |
- | 6032 | #define SDIO_ICR_RXOVERRC_Pos (5U) |
|
- | 6033 | #define SDIO_ICR_RXOVERRC_Msk (0x1U << SDIO_ICR_RXOVERRC_Pos) /*!< 0x00000020 */ |
|
3652 | #define SDIO_ICR_RXOVERRC ((uint32_t)0x00000020) /*!< RXOVERR flag clear bit */ |
6034 | #define SDIO_ICR_RXOVERRC SDIO_ICR_RXOVERRC_Msk /*!< RXOVERR flag clear bit */ |
- | 6035 | #define SDIO_ICR_CMDRENDC_Pos (6U) |
|
- | 6036 | #define SDIO_ICR_CMDRENDC_Msk (0x1U << SDIO_ICR_CMDRENDC_Pos) /*!< 0x00000040 */ |
|
3653 | #define SDIO_ICR_CMDRENDC ((uint32_t)0x00000040) /*!< CMDREND flag clear bit */ |
6037 | #define SDIO_ICR_CMDRENDC SDIO_ICR_CMDRENDC_Msk /*!< CMDREND flag clear bit */ |
- | 6038 | #define SDIO_ICR_CMDSENTC_Pos (7U) |
|
- | 6039 | #define SDIO_ICR_CMDSENTC_Msk (0x1U << SDIO_ICR_CMDSENTC_Pos) /*!< 0x00000080 */ |
|
3654 | #define SDIO_ICR_CMDSENTC ((uint32_t)0x00000080) /*!< CMDSENT flag clear bit */ |
6040 | #define SDIO_ICR_CMDSENTC SDIO_ICR_CMDSENTC_Msk /*!< CMDSENT flag clear bit */ |
- | 6041 | #define SDIO_ICR_DATAENDC_Pos (8U) |
|
- | 6042 | #define SDIO_ICR_DATAENDC_Msk (0x1U << SDIO_ICR_DATAENDC_Pos) /*!< 0x00000100 */ |
|
3655 | #define SDIO_ICR_DATAENDC ((uint32_t)0x00000100) /*!< DATAEND flag clear bit */ |
6043 | #define SDIO_ICR_DATAENDC SDIO_ICR_DATAENDC_Msk /*!< DATAEND flag clear bit */ |
- | 6044 | #define SDIO_ICR_STBITERRC_Pos (9U) |
|
- | 6045 | #define SDIO_ICR_STBITERRC_Msk (0x1U << SDIO_ICR_STBITERRC_Pos) /*!< 0x00000200 */ |
|
3656 | #define SDIO_ICR_STBITERRC ((uint32_t)0x00000200) /*!< STBITERR flag clear bit */ |
6046 | #define SDIO_ICR_STBITERRC SDIO_ICR_STBITERRC_Msk /*!< STBITERR flag clear bit */ |
- | 6047 | #define SDIO_ICR_DBCKENDC_Pos (10U) |
|
- | 6048 | #define SDIO_ICR_DBCKENDC_Msk (0x1U << SDIO_ICR_DBCKENDC_Pos) /*!< 0x00000400 */ |
|
3657 | #define SDIO_ICR_DBCKENDC ((uint32_t)0x00000400) /*!< DBCKEND flag clear bit */ |
6049 | #define SDIO_ICR_DBCKENDC SDIO_ICR_DBCKENDC_Msk /*!< DBCKEND flag clear bit */ |
- | 6050 | #define SDIO_ICR_SDIOITC_Pos (22U) |
|
- | 6051 | #define SDIO_ICR_SDIOITC_Msk (0x1U << SDIO_ICR_SDIOITC_Pos) /*!< 0x00400000 */ |
|
3658 | #define SDIO_ICR_SDIOITC ((uint32_t)0x00400000) /*!< SDIOIT flag clear bit */ |
6052 | #define SDIO_ICR_SDIOITC SDIO_ICR_SDIOITC_Msk /*!< SDIOIT flag clear bit */ |
- | 6053 | #define SDIO_ICR_CEATAENDC_Pos (23U) |
|
- | 6054 | #define SDIO_ICR_CEATAENDC_Msk (0x1U << SDIO_ICR_CEATAENDC_Pos) /*!< 0x00800000 */ |
|
3659 | #define SDIO_ICR_CEATAENDC ((uint32_t)0x00800000) /*!< CEATAEND flag clear bit */ |
6055 | #define SDIO_ICR_CEATAENDC SDIO_ICR_CEATAENDC_Msk /*!< CEATAEND flag clear bit */ |
3660 | 6056 | ||
3661 | /****************** Bit definition for SDIO_MASK register *******************/ |
6057 | /****************** Bit definition for SDIO_MASK register *******************/ |
- | 6058 | #define SDIO_MASK_CCRCFAILIE_Pos (0U) |
|
- | 6059 | #define SDIO_MASK_CCRCFAILIE_Msk (0x1U << SDIO_MASK_CCRCFAILIE_Pos) /*!< 0x00000001 */ |
|
3662 | #define SDIO_MASK_CCRCFAILIE ((uint32_t)0x00000001) /*!< Command CRC Fail Interrupt Enable */ |
6060 | #define SDIO_MASK_CCRCFAILIE SDIO_MASK_CCRCFAILIE_Msk /*!< Command CRC Fail Interrupt Enable */ |
- | 6061 | #define SDIO_MASK_DCRCFAILIE_Pos (1U) |
|
- | 6062 | #define SDIO_MASK_DCRCFAILIE_Msk (0x1U << SDIO_MASK_DCRCFAILIE_Pos) /*!< 0x00000002 */ |
|
3663 | #define SDIO_MASK_DCRCFAILIE ((uint32_t)0x00000002) /*!< Data CRC Fail Interrupt Enable */ |
6063 | #define SDIO_MASK_DCRCFAILIE SDIO_MASK_DCRCFAILIE_Msk /*!< Data CRC Fail Interrupt Enable */ |
- | 6064 | #define SDIO_MASK_CTIMEOUTIE_Pos (2U) |
|
- | 6065 | #define SDIO_MASK_CTIMEOUTIE_Msk (0x1U << SDIO_MASK_CTIMEOUTIE_Pos) /*!< 0x00000004 */ |
|
3664 | #define SDIO_MASK_CTIMEOUTIE ((uint32_t)0x00000004) /*!< Command TimeOut Interrupt Enable */ |
6066 | #define SDIO_MASK_CTIMEOUTIE SDIO_MASK_CTIMEOUTIE_Msk /*!< Command TimeOut Interrupt Enable */ |
- | 6067 | #define SDIO_MASK_DTIMEOUTIE_Pos (3U) |
|
- | 6068 | #define SDIO_MASK_DTIMEOUTIE_Msk (0x1U << SDIO_MASK_DTIMEOUTIE_Pos) /*!< 0x00000008 */ |
|
3665 | #define SDIO_MASK_DTIMEOUTIE ((uint32_t)0x00000008) /*!< Data TimeOut Interrupt Enable */ |
6069 | #define SDIO_MASK_DTIMEOUTIE SDIO_MASK_DTIMEOUTIE_Msk /*!< Data TimeOut Interrupt Enable */ |
- | 6070 | #define SDIO_MASK_TXUNDERRIE_Pos (4U) |
|
- | 6071 | #define SDIO_MASK_TXUNDERRIE_Msk (0x1U << SDIO_MASK_TXUNDERRIE_Pos) /*!< 0x00000010 */ |
|
3666 | #define SDIO_MASK_TXUNDERRIE ((uint32_t)0x00000010) /*!< Tx FIFO UnderRun Error Interrupt Enable */ |
6072 | #define SDIO_MASK_TXUNDERRIE SDIO_MASK_TXUNDERRIE_Msk /*!< Tx FIFO UnderRun Error Interrupt Enable */ |
- | 6073 | #define SDIO_MASK_RXOVERRIE_Pos (5U) |
|
- | 6074 | #define SDIO_MASK_RXOVERRIE_Msk (0x1U << SDIO_MASK_RXOVERRIE_Pos) /*!< 0x00000020 */ |
|
3667 | #define SDIO_MASK_RXOVERRIE ((uint32_t)0x00000020) /*!< Rx FIFO OverRun Error Interrupt Enable */ |
6075 | #define SDIO_MASK_RXOVERRIE SDIO_MASK_RXOVERRIE_Msk /*!< Rx FIFO OverRun Error Interrupt Enable */ |
- | 6076 | #define SDIO_MASK_CMDRENDIE_Pos (6U) |
|
- | 6077 | #define SDIO_MASK_CMDRENDIE_Msk (0x1U << SDIO_MASK_CMDRENDIE_Pos) /*!< 0x00000040 */ |
|
3668 | #define SDIO_MASK_CMDRENDIE ((uint32_t)0x00000040) /*!< Command Response Received Interrupt Enable */ |
6078 | #define SDIO_MASK_CMDRENDIE SDIO_MASK_CMDRENDIE_Msk /*!< Command Response Received Interrupt Enable */ |
- | 6079 | #define SDIO_MASK_CMDSENTIE_Pos (7U) |
|
- | 6080 | #define SDIO_MASK_CMDSENTIE_Msk (0x1U << SDIO_MASK_CMDSENTIE_Pos) /*!< 0x00000080 */ |
|
3669 | #define SDIO_MASK_CMDSENTIE ((uint32_t)0x00000080) /*!< Command Sent Interrupt Enable */ |
6081 | #define SDIO_MASK_CMDSENTIE SDIO_MASK_CMDSENTIE_Msk /*!< Command Sent Interrupt Enable */ |
- | 6082 | #define SDIO_MASK_DATAENDIE_Pos (8U) |
|
- | 6083 | #define SDIO_MASK_DATAENDIE_Msk (0x1U << SDIO_MASK_DATAENDIE_Pos) /*!< 0x00000100 */ |
|
3670 | #define SDIO_MASK_DATAENDIE ((uint32_t)0x00000100) /*!< Data End Interrupt Enable */ |
6084 | #define SDIO_MASK_DATAENDIE SDIO_MASK_DATAENDIE_Msk /*!< Data End Interrupt Enable */ |
- | 6085 | #define SDIO_MASK_STBITERRIE_Pos (9U) |
|
- | 6086 | #define SDIO_MASK_STBITERRIE_Msk (0x1U << SDIO_MASK_STBITERRIE_Pos) /*!< 0x00000200 */ |
|
3671 | #define SDIO_MASK_STBITERRIE ((uint32_t)0x00000200) /*!< Start Bit Error Interrupt Enable */ |
6087 | #define SDIO_MASK_STBITERRIE SDIO_MASK_STBITERRIE_Msk /*!< Start Bit Error Interrupt Enable */ |
- | 6088 | #define SDIO_MASK_DBCKENDIE_Pos (10U) |
|
- | 6089 | #define SDIO_MASK_DBCKENDIE_Msk (0x1U << SDIO_MASK_DBCKENDIE_Pos) /*!< 0x00000400 */ |
|
3672 | #define SDIO_MASK_DBCKENDIE ((uint32_t)0x00000400) /*!< Data Block End Interrupt Enable */ |
6090 | #define SDIO_MASK_DBCKENDIE SDIO_MASK_DBCKENDIE_Msk /*!< Data Block End Interrupt Enable */ |
- | 6091 | #define SDIO_MASK_CMDACTIE_Pos (11U) |
|
- | 6092 | #define SDIO_MASK_CMDACTIE_Msk (0x1U << SDIO_MASK_CMDACTIE_Pos) /*!< 0x00000800 */ |
|
3673 | #define SDIO_MASK_CMDACTIE ((uint32_t)0x00000800) /*!< Command Acting Interrupt Enable */ |
6093 | #define SDIO_MASK_CMDACTIE SDIO_MASK_CMDACTIE_Msk /*!< Command Acting Interrupt Enable */ |
- | 6094 | #define SDIO_MASK_TXACTIE_Pos (12U) |
|
- | 6095 | #define SDIO_MASK_TXACTIE_Msk (0x1U << SDIO_MASK_TXACTIE_Pos) /*!< 0x00001000 */ |
|
3674 | #define SDIO_MASK_TXACTIE ((uint32_t)0x00001000) /*!< Data Transmit Acting Interrupt Enable */ |
6096 | #define SDIO_MASK_TXACTIE SDIO_MASK_TXACTIE_Msk /*!< Data Transmit Acting Interrupt Enable */ |
- | 6097 | #define SDIO_MASK_RXACTIE_Pos (13U) |
|
- | 6098 | #define SDIO_MASK_RXACTIE_Msk (0x1U << SDIO_MASK_RXACTIE_Pos) /*!< 0x00002000 */ |
|
3675 | #define SDIO_MASK_RXACTIE ((uint32_t)0x00002000) /*!< Data receive acting interrupt enabled */ |
6099 | #define SDIO_MASK_RXACTIE SDIO_MASK_RXACTIE_Msk /*!< Data receive acting interrupt enabled */ |
- | 6100 | #define SDIO_MASK_TXFIFOHEIE_Pos (14U) |
|
- | 6101 | #define SDIO_MASK_TXFIFOHEIE_Msk (0x1U << SDIO_MASK_TXFIFOHEIE_Pos) /*!< 0x00004000 */ |
|
3676 | #define SDIO_MASK_TXFIFOHEIE ((uint32_t)0x00004000) /*!< Tx FIFO Half Empty interrupt Enable */ |
6102 | #define SDIO_MASK_TXFIFOHEIE SDIO_MASK_TXFIFOHEIE_Msk /*!< Tx FIFO Half Empty interrupt Enable */ |
- | 6103 | #define SDIO_MASK_RXFIFOHFIE_Pos (15U) |
|
- | 6104 | #define SDIO_MASK_RXFIFOHFIE_Msk (0x1U << SDIO_MASK_RXFIFOHFIE_Pos) /*!< 0x00008000 */ |
|
3677 | #define SDIO_MASK_RXFIFOHFIE ((uint32_t)0x00008000) /*!< Rx FIFO Half Full interrupt Enable */ |
6105 | #define SDIO_MASK_RXFIFOHFIE SDIO_MASK_RXFIFOHFIE_Msk /*!< Rx FIFO Half Full interrupt Enable */ |
- | 6106 | #define SDIO_MASK_TXFIFOFIE_Pos (16U) |
|
- | 6107 | #define SDIO_MASK_TXFIFOFIE_Msk (0x1U << SDIO_MASK_TXFIFOFIE_Pos) /*!< 0x00010000 */ |
|
3678 | #define SDIO_MASK_TXFIFOFIE ((uint32_t)0x00010000) /*!< Tx FIFO Full interrupt Enable */ |
6108 | #define SDIO_MASK_TXFIFOFIE SDIO_MASK_TXFIFOFIE_Msk /*!< Tx FIFO Full interrupt Enable */ |
- | 6109 | #define SDIO_MASK_RXFIFOFIE_Pos (17U) |
|
- | 6110 | #define SDIO_MASK_RXFIFOFIE_Msk (0x1U << SDIO_MASK_RXFIFOFIE_Pos) /*!< 0x00020000 */ |
|
3679 | #define SDIO_MASK_RXFIFOFIE ((uint32_t)0x00020000) /*!< Rx FIFO Full interrupt Enable */ |
6111 | #define SDIO_MASK_RXFIFOFIE SDIO_MASK_RXFIFOFIE_Msk /*!< Rx FIFO Full interrupt Enable */ |
- | 6112 | #define SDIO_MASK_TXFIFOEIE_Pos (18U) |
|
- | 6113 | #define SDIO_MASK_TXFIFOEIE_Msk (0x1U << SDIO_MASK_TXFIFOEIE_Pos) /*!< 0x00040000 */ |
|
3680 | #define SDIO_MASK_TXFIFOEIE ((uint32_t)0x00040000) /*!< Tx FIFO Empty interrupt Enable */ |
6114 | #define SDIO_MASK_TXFIFOEIE SDIO_MASK_TXFIFOEIE_Msk /*!< Tx FIFO Empty interrupt Enable */ |
- | 6115 | #define SDIO_MASK_RXFIFOEIE_Pos (19U) |
|
- | 6116 | #define SDIO_MASK_RXFIFOEIE_Msk (0x1U << SDIO_MASK_RXFIFOEIE_Pos) /*!< 0x00080000 */ |
|
3681 | #define SDIO_MASK_RXFIFOEIE ((uint32_t)0x00080000) /*!< Rx FIFO Empty interrupt Enable */ |
6117 | #define SDIO_MASK_RXFIFOEIE SDIO_MASK_RXFIFOEIE_Msk /*!< Rx FIFO Empty interrupt Enable */ |
- | 6118 | #define SDIO_MASK_TXDAVLIE_Pos (20U) |
|
- | 6119 | #define SDIO_MASK_TXDAVLIE_Msk (0x1U << SDIO_MASK_TXDAVLIE_Pos) /*!< 0x00100000 */ |
|
3682 | #define SDIO_MASK_TXDAVLIE ((uint32_t)0x00100000) /*!< Data available in Tx FIFO interrupt Enable */ |
6120 | #define SDIO_MASK_TXDAVLIE SDIO_MASK_TXDAVLIE_Msk /*!< Data available in Tx FIFO interrupt Enable */ |
- | 6121 | #define SDIO_MASK_RXDAVLIE_Pos (21U) |
|
- | 6122 | #define SDIO_MASK_RXDAVLIE_Msk (0x1U << SDIO_MASK_RXDAVLIE_Pos) /*!< 0x00200000 */ |
|
3683 | #define SDIO_MASK_RXDAVLIE ((uint32_t)0x00200000) /*!< Data available in Rx FIFO interrupt Enable */ |
6123 | #define SDIO_MASK_RXDAVLIE SDIO_MASK_RXDAVLIE_Msk /*!< Data available in Rx FIFO interrupt Enable */ |
- | 6124 | #define SDIO_MASK_SDIOITIE_Pos (22U) |
|
- | 6125 | #define SDIO_MASK_SDIOITIE_Msk (0x1U << SDIO_MASK_SDIOITIE_Pos) /*!< 0x00400000 */ |
|
3684 | #define SDIO_MASK_SDIOITIE ((uint32_t)0x00400000) /*!< SDIO Mode Interrupt Received interrupt Enable */ |
6126 | #define SDIO_MASK_SDIOITIE SDIO_MASK_SDIOITIE_Msk /*!< SDIO Mode Interrupt Received interrupt Enable */ |
- | 6127 | #define SDIO_MASK_CEATAENDIE_Pos (23U) |
|
- | 6128 | #define SDIO_MASK_CEATAENDIE_Msk (0x1U << SDIO_MASK_CEATAENDIE_Pos) /*!< 0x00800000 */ |
|
3685 | #define SDIO_MASK_CEATAENDIE ((uint32_t)0x00800000) /*!< CE-ATA command completion signal received Interrupt Enable */ |
6129 | #define SDIO_MASK_CEATAENDIE SDIO_MASK_CEATAENDIE_Msk /*!< CE-ATA command completion signal received Interrupt Enable */ |
3686 | 6130 | ||
3687 | /***************** Bit definition for SDIO_FIFOCNT register *****************/ |
6131 | /***************** Bit definition for SDIO_FIFOCNT register *****************/ |
- | 6132 | #define SDIO_FIFOCNT_FIFOCOUNT_Pos (0U) |
|
- | 6133 | #define SDIO_FIFOCNT_FIFOCOUNT_Msk (0xFFFFFFU << SDIO_FIFOCNT_FIFOCOUNT_Pos) /*!< 0x00FFFFFF */ |
|
3688 | #define SDIO_FIFOCNT_FIFOCOUNT ((uint32_t)0x00FFFFFF) /*!< Remaining number of words to be written to or read from the FIFO */ |
6134 | #define SDIO_FIFOCNT_FIFOCOUNT SDIO_FIFOCNT_FIFOCOUNT_Msk /*!< Remaining number of words to be written to or read from the FIFO */ |
3689 | 6135 | ||
3690 | /****************** Bit definition for SDIO_FIFO register *******************/ |
6136 | /****************** Bit definition for SDIO_FIFO register *******************/ |
- | 6137 | #define SDIO_FIFO_FIFODATA_Pos (0U) |
|
- | 6138 | #define SDIO_FIFO_FIFODATA_Msk (0xFFFFFFFFU << SDIO_FIFO_FIFODATA_Pos) /*!< 0xFFFFFFFF */ |
|
3691 | #define SDIO_FIFO_FIFODATA ((uint32_t)0xFFFFFFFF) /*!< Receive and transmit FIFO data */ |
6139 | #define SDIO_FIFO_FIFODATA SDIO_FIFO_FIFODATA_Msk /*!< Receive and transmit FIFO data */ |
3692 | 6140 | ||
3693 | 6141 | ||
3694 | 6142 | ||
3695 | /******************************************************************************/ |
6143 | /******************************************************************************/ |
3696 | /* */ |
6144 | /* */ |
3697 | /* Serial Peripheral Interface */ |
6145 | /* Serial Peripheral Interface */ |
3698 | /* */ |
6146 | /* */ |
3699 | /******************************************************************************/ |
6147 | /******************************************************************************/ |
3700 | 6148 | ||
3701 | /******************* Bit definition for SPI_CR1 register ********************/ |
6149 | /******************* Bit definition for SPI_CR1 register ********************/ |
- | 6150 | #define SPI_CR1_CPHA_Pos (0U) |
|
- | 6151 | #define SPI_CR1_CPHA_Msk (0x1U << SPI_CR1_CPHA_Pos) /*!< 0x00000001 */ |
|
3702 | #define SPI_CR1_CPHA ((uint32_t)0x00000001) /*!< Clock Phase */ |
6152 | #define SPI_CR1_CPHA SPI_CR1_CPHA_Msk /*!< Clock Phase */ |
- | 6153 | #define SPI_CR1_CPOL_Pos (1U) |
|
- | 6154 | #define SPI_CR1_CPOL_Msk (0x1U << SPI_CR1_CPOL_Pos) /*!< 0x00000002 */ |
|
3703 | #define SPI_CR1_CPOL ((uint32_t)0x00000002) /*!< Clock Polarity */ |
6155 | #define SPI_CR1_CPOL SPI_CR1_CPOL_Msk /*!< Clock Polarity */ |
- | 6156 | #define SPI_CR1_MSTR_Pos (2U) |
|
- | 6157 | #define SPI_CR1_MSTR_Msk (0x1U << SPI_CR1_MSTR_Pos) /*!< 0x00000004 */ |
|
3704 | #define SPI_CR1_MSTR ((uint32_t)0x00000004) /*!< Master Selection */ |
6158 | #define SPI_CR1_MSTR SPI_CR1_MSTR_Msk /*!< Master Selection */ |
3705 | 6159 | ||
- | 6160 | #define SPI_CR1_BR_Pos (3U) |
|
- | 6161 | #define SPI_CR1_BR_Msk (0x7U << SPI_CR1_BR_Pos) /*!< 0x00000038 */ |
|
3706 | #define SPI_CR1_BR ((uint32_t)0x00000038) /*!< BR[2:0] bits (Baud Rate Control) */ |
6162 | #define SPI_CR1_BR SPI_CR1_BR_Msk /*!< BR[2:0] bits (Baud Rate Control) */ |
3707 | #define SPI_CR1_BR_0 ((uint32_t)0x00000008) /*!< Bit 0 */ |
6163 | #define SPI_CR1_BR_0 (0x1U << SPI_CR1_BR_Pos) /*!< 0x00000008 */ |
3708 | #define SPI_CR1_BR_1 ((uint32_t)0x00000010) /*!< Bit 1 */ |
6164 | #define SPI_CR1_BR_1 (0x2U << SPI_CR1_BR_Pos) /*!< 0x00000010 */ |
3709 | #define SPI_CR1_BR_2 ((uint32_t)0x00000020) /*!< Bit 2 */ |
6165 | #define SPI_CR1_BR_2 (0x4U << SPI_CR1_BR_Pos) /*!< 0x00000020 */ |
3710 | 6166 | ||
- | 6167 | #define SPI_CR1_SPE_Pos (6U) |
|
- | 6168 | #define SPI_CR1_SPE_Msk (0x1U << SPI_CR1_SPE_Pos) /*!< 0x00000040 */ |
|
3711 | #define SPI_CR1_SPE ((uint32_t)0x00000040) /*!< SPI Enable */ |
6169 | #define SPI_CR1_SPE SPI_CR1_SPE_Msk /*!< SPI Enable */ |
- | 6170 | #define SPI_CR1_LSBFIRST_Pos (7U) |
|
- | 6171 | #define SPI_CR1_LSBFIRST_Msk (0x1U << SPI_CR1_LSBFIRST_Pos) /*!< 0x00000080 */ |
|
3712 | #define SPI_CR1_LSBFIRST ((uint32_t)0x00000080) /*!< Frame Format */ |
6172 | #define SPI_CR1_LSBFIRST SPI_CR1_LSBFIRST_Msk /*!< Frame Format */ |
- | 6173 | #define SPI_CR1_SSI_Pos (8U) |
|
- | 6174 | #define SPI_CR1_SSI_Msk (0x1U << SPI_CR1_SSI_Pos) /*!< 0x00000100 */ |
|
3713 | #define SPI_CR1_SSI ((uint32_t)0x00000100) /*!< Internal slave select */ |
6175 | #define SPI_CR1_SSI SPI_CR1_SSI_Msk /*!< Internal slave select */ |
- | 6176 | #define SPI_CR1_SSM_Pos (9U) |
|
- | 6177 | #define SPI_CR1_SSM_Msk (0x1U << SPI_CR1_SSM_Pos) /*!< 0x00000200 */ |
|
3714 | #define SPI_CR1_SSM ((uint32_t)0x00000200) /*!< Software slave management */ |
6178 | #define SPI_CR1_SSM SPI_CR1_SSM_Msk /*!< Software slave management */ |
- | 6179 | #define SPI_CR1_RXONLY_Pos (10U) |
|
- | 6180 | #define SPI_CR1_RXONLY_Msk (0x1U << SPI_CR1_RXONLY_Pos) /*!< 0x00000400 */ |
|
3715 | #define SPI_CR1_RXONLY ((uint32_t)0x00000400) /*!< Receive only */ |
6181 | #define SPI_CR1_RXONLY SPI_CR1_RXONLY_Msk /*!< Receive only */ |
- | 6182 | #define SPI_CR1_DFF_Pos (11U) |
|
- | 6183 | #define SPI_CR1_DFF_Msk (0x1U << SPI_CR1_DFF_Pos) /*!< 0x00000800 */ |
|
3716 | #define SPI_CR1_DFF ((uint32_t)0x00000800) /*!< Data Frame Format */ |
6184 | #define SPI_CR1_DFF SPI_CR1_DFF_Msk /*!< Data Frame Format */ |
- | 6185 | #define SPI_CR1_CRCNEXT_Pos (12U) |
|
- | 6186 | #define SPI_CR1_CRCNEXT_Msk (0x1U << SPI_CR1_CRCNEXT_Pos) /*!< 0x00001000 */ |
|
3717 | #define SPI_CR1_CRCNEXT ((uint32_t)0x00001000) /*!< Transmit CRC next */ |
6187 | #define SPI_CR1_CRCNEXT SPI_CR1_CRCNEXT_Msk /*!< Transmit CRC next */ |
- | 6188 | #define SPI_CR1_CRCEN_Pos (13U) |
|
- | 6189 | #define SPI_CR1_CRCEN_Msk (0x1U << SPI_CR1_CRCEN_Pos) /*!< 0x00002000 */ |
|
3718 | #define SPI_CR1_CRCEN ((uint32_t)0x00002000) /*!< Hardware CRC calculation enable */ |
6190 | #define SPI_CR1_CRCEN SPI_CR1_CRCEN_Msk /*!< Hardware CRC calculation enable */ |
- | 6191 | #define SPI_CR1_BIDIOE_Pos (14U) |
|
- | 6192 | #define SPI_CR1_BIDIOE_Msk (0x1U << SPI_CR1_BIDIOE_Pos) /*!< 0x00004000 */ |
|
3719 | #define SPI_CR1_BIDIOE ((uint32_t)0x00004000) /*!< Output enable in bidirectional mode */ |
6193 | #define SPI_CR1_BIDIOE SPI_CR1_BIDIOE_Msk /*!< Output enable in bidirectional mode */ |
- | 6194 | #define SPI_CR1_BIDIMODE_Pos (15U) |
|
- | 6195 | #define SPI_CR1_BIDIMODE_Msk (0x1U << SPI_CR1_BIDIMODE_Pos) /*!< 0x00008000 */ |
|
3720 | #define SPI_CR1_BIDIMODE ((uint32_t)0x00008000) /*!< Bidirectional data mode enable */ |
6196 | #define SPI_CR1_BIDIMODE SPI_CR1_BIDIMODE_Msk /*!< Bidirectional data mode enable */ |
3721 | 6197 | ||
3722 | /******************* Bit definition for SPI_CR2 register ********************/ |
6198 | /******************* Bit definition for SPI_CR2 register ********************/ |
- | 6199 | #define SPI_CR2_RXDMAEN_Pos (0U) |
|
- | 6200 | #define SPI_CR2_RXDMAEN_Msk (0x1U << SPI_CR2_RXDMAEN_Pos) /*!< 0x00000001 */ |
|
3723 | #define SPI_CR2_RXDMAEN ((uint32_t)0x00000001) /*!< Rx Buffer DMA Enable */ |
6201 | #define SPI_CR2_RXDMAEN SPI_CR2_RXDMAEN_Msk /*!< Rx Buffer DMA Enable */ |
- | 6202 | #define SPI_CR2_TXDMAEN_Pos (1U) |
|
- | 6203 | #define SPI_CR2_TXDMAEN_Msk (0x1U << SPI_CR2_TXDMAEN_Pos) /*!< 0x00000002 */ |
|
3724 | #define SPI_CR2_TXDMAEN ((uint32_t)0x00000002) /*!< Tx Buffer DMA Enable */ |
6204 | #define SPI_CR2_TXDMAEN SPI_CR2_TXDMAEN_Msk /*!< Tx Buffer DMA Enable */ |
- | 6205 | #define SPI_CR2_SSOE_Pos (2U) |
|
- | 6206 | #define SPI_CR2_SSOE_Msk (0x1U << SPI_CR2_SSOE_Pos) /*!< 0x00000004 */ |
|
3725 | #define SPI_CR2_SSOE ((uint32_t)0x00000004) /*!< SS Output Enable */ |
6207 | #define SPI_CR2_SSOE SPI_CR2_SSOE_Msk /*!< SS Output Enable */ |
- | 6208 | #define SPI_CR2_ERRIE_Pos (5U) |
|
- | 6209 | #define SPI_CR2_ERRIE_Msk (0x1U << SPI_CR2_ERRIE_Pos) /*!< 0x00000020 */ |
|
3726 | #define SPI_CR2_ERRIE ((uint32_t)0x00000020) /*!< Error Interrupt Enable */ |
6210 | #define SPI_CR2_ERRIE SPI_CR2_ERRIE_Msk /*!< Error Interrupt Enable */ |
- | 6211 | #define SPI_CR2_RXNEIE_Pos (6U) |
|
- | 6212 | #define SPI_CR2_RXNEIE_Msk (0x1U << SPI_CR2_RXNEIE_Pos) /*!< 0x00000040 */ |
|
3727 | #define SPI_CR2_RXNEIE ((uint32_t)0x00000040) /*!< RX buffer Not Empty Interrupt Enable */ |
6213 | #define SPI_CR2_RXNEIE SPI_CR2_RXNEIE_Msk /*!< RX buffer Not Empty Interrupt Enable */ |
- | 6214 | #define SPI_CR2_TXEIE_Pos (7U) |
|
- | 6215 | #define SPI_CR2_TXEIE_Msk (0x1U << SPI_CR2_TXEIE_Pos) /*!< 0x00000080 */ |
|
3728 | #define SPI_CR2_TXEIE ((uint32_t)0x00000080) /*!< Tx buffer Empty Interrupt Enable */ |
6216 | #define SPI_CR2_TXEIE SPI_CR2_TXEIE_Msk /*!< Tx buffer Empty Interrupt Enable */ |
3729 | 6217 | ||
3730 | /******************** Bit definition for SPI_SR register ********************/ |
6218 | /******************** Bit definition for SPI_SR register ********************/ |
- | 6219 | #define SPI_SR_RXNE_Pos (0U) |
|
- | 6220 | #define SPI_SR_RXNE_Msk (0x1U << SPI_SR_RXNE_Pos) /*!< 0x00000001 */ |
|
3731 | #define SPI_SR_RXNE ((uint32_t)0x00000001) /*!< Receive buffer Not Empty */ |
6221 | #define SPI_SR_RXNE SPI_SR_RXNE_Msk /*!< Receive buffer Not Empty */ |
- | 6222 | #define SPI_SR_TXE_Pos (1U) |
|
- | 6223 | #define SPI_SR_TXE_Msk (0x1U << SPI_SR_TXE_Pos) /*!< 0x00000002 */ |
|
3732 | #define SPI_SR_TXE ((uint32_t)0x00000002) /*!< Transmit buffer Empty */ |
6224 | #define SPI_SR_TXE SPI_SR_TXE_Msk /*!< Transmit buffer Empty */ |
- | 6225 | #define SPI_SR_CHSIDE_Pos (2U) |
|
- | 6226 | #define SPI_SR_CHSIDE_Msk (0x1U << SPI_SR_CHSIDE_Pos) /*!< 0x00000004 */ |
|
3733 | #define SPI_SR_CHSIDE ((uint32_t)0x00000004) /*!< Channel side */ |
6227 | #define SPI_SR_CHSIDE SPI_SR_CHSIDE_Msk /*!< Channel side */ |
- | 6228 | #define SPI_SR_UDR_Pos (3U) |
|
- | 6229 | #define SPI_SR_UDR_Msk (0x1U << SPI_SR_UDR_Pos) /*!< 0x00000008 */ |
|
3734 | #define SPI_SR_UDR ((uint32_t)0x00000008) /*!< Underrun flag */ |
6230 | #define SPI_SR_UDR SPI_SR_UDR_Msk /*!< Underrun flag */ |
- | 6231 | #define SPI_SR_CRCERR_Pos (4U) |
|
- | 6232 | #define SPI_SR_CRCERR_Msk (0x1U << SPI_SR_CRCERR_Pos) /*!< 0x00000010 */ |
|
3735 | #define SPI_SR_CRCERR ((uint32_t)0x00000010) /*!< CRC Error flag */ |
6233 | #define SPI_SR_CRCERR SPI_SR_CRCERR_Msk /*!< CRC Error flag */ |
- | 6234 | #define SPI_SR_MODF_Pos (5U) |
|
- | 6235 | #define SPI_SR_MODF_Msk (0x1U << SPI_SR_MODF_Pos) /*!< 0x00000020 */ |
|
3736 | #define SPI_SR_MODF ((uint32_t)0x00000020) /*!< Mode fault */ |
6236 | #define SPI_SR_MODF SPI_SR_MODF_Msk /*!< Mode fault */ |
- | 6237 | #define SPI_SR_OVR_Pos (6U) |
|
- | 6238 | #define SPI_SR_OVR_Msk (0x1U << SPI_SR_OVR_Pos) /*!< 0x00000040 */ |
|
3737 | #define SPI_SR_OVR ((uint32_t)0x00000040) /*!< Overrun flag */ |
6239 | #define SPI_SR_OVR SPI_SR_OVR_Msk /*!< Overrun flag */ |
- | 6240 | #define SPI_SR_BSY_Pos (7U) |
|
- | 6241 | #define SPI_SR_BSY_Msk (0x1U << SPI_SR_BSY_Pos) /*!< 0x00000080 */ |
|
3738 | #define SPI_SR_BSY ((uint32_t)0x00000080) /*!< Busy flag */ |
6242 | #define SPI_SR_BSY SPI_SR_BSY_Msk /*!< Busy flag */ |
3739 | 6243 | ||
3740 | /******************** Bit definition for SPI_DR register ********************/ |
6244 | /******************** Bit definition for SPI_DR register ********************/ |
- | 6245 | #define SPI_DR_DR_Pos (0U) |
|
- | 6246 | #define SPI_DR_DR_Msk (0xFFFFU << SPI_DR_DR_Pos) /*!< 0x0000FFFF */ |
|
3741 | #define SPI_DR_DR ((uint32_t)0x0000FFFF) /*!< Data Register */ |
6247 | #define SPI_DR_DR SPI_DR_DR_Msk /*!< Data Register */ |
3742 | 6248 | ||
3743 | /******************* Bit definition for SPI_CRCPR register ******************/ |
6249 | /******************* Bit definition for SPI_CRCPR register ******************/ |
- | 6250 | #define SPI_CRCPR_CRCPOLY_Pos (0U) |
|
- | 6251 | #define SPI_CRCPR_CRCPOLY_Msk (0xFFFFU << SPI_CRCPR_CRCPOLY_Pos) /*!< 0x0000FFFF */ |
|
3744 | #define SPI_CRCPR_CRCPOLY ((uint32_t)0x0000FFFF) /*!< CRC polynomial register */ |
6252 | #define SPI_CRCPR_CRCPOLY SPI_CRCPR_CRCPOLY_Msk /*!< CRC polynomial register */ |
3745 | 6253 | ||
3746 | /****************** Bit definition for SPI_RXCRCR register ******************/ |
6254 | /****************** Bit definition for SPI_RXCRCR register ******************/ |
- | 6255 | #define SPI_RXCRCR_RXCRC_Pos (0U) |
|
- | 6256 | #define SPI_RXCRCR_RXCRC_Msk (0xFFFFU << SPI_RXCRCR_RXCRC_Pos) /*!< 0x0000FFFF */ |
|
3747 | #define SPI_RXCRCR_RXCRC ((uint32_t)0x0000FFFF) /*!< Rx CRC Register */ |
6257 | #define SPI_RXCRCR_RXCRC SPI_RXCRCR_RXCRC_Msk /*!< Rx CRC Register */ |
3748 | 6258 | ||
3749 | /****************** Bit definition for SPI_TXCRCR register ******************/ |
6259 | /****************** Bit definition for SPI_TXCRCR register ******************/ |
- | 6260 | #define SPI_TXCRCR_TXCRC_Pos (0U) |
|
- | 6261 | #define SPI_TXCRCR_TXCRC_Msk (0xFFFFU << SPI_TXCRCR_TXCRC_Pos) /*!< 0x0000FFFF */ |
|
3750 | #define SPI_TXCRCR_TXCRC ((uint32_t)0x0000FFFF) /*!< Tx CRC Register */ |
6262 | #define SPI_TXCRCR_TXCRC SPI_TXCRCR_TXCRC_Msk /*!< Tx CRC Register */ |
3751 | 6263 | ||
3752 | /****************** Bit definition for SPI_I2SCFGR register *****************/ |
6264 | /****************** Bit definition for SPI_I2SCFGR register *****************/ |
- | 6265 | #define SPI_I2SCFGR_I2SMOD_Pos (11U) |
|
- | 6266 | #define SPI_I2SCFGR_I2SMOD_Msk (0x1U << SPI_I2SCFGR_I2SMOD_Pos) /*!< 0x00000800 */ |
|
3753 | #define SPI_I2SCFGR_I2SMOD ((uint32_t)0x00000800) /*!< I2S mode selection */ |
6267 | #define SPI_I2SCFGR_I2SMOD SPI_I2SCFGR_I2SMOD_Msk /*!< I2S mode selection */ |
3754 | 6268 | ||
3755 | 6269 | ||
3756 | /******************************************************************************/ |
6270 | /******************************************************************************/ |
3757 | /* */ |
6271 | /* */ |
3758 | /* Inter-integrated Circuit Interface */ |
6272 | /* Inter-integrated Circuit Interface */ |
3759 | /* */ |
6273 | /* */ |
3760 | /******************************************************************************/ |
6274 | /******************************************************************************/ |
3761 | 6275 | ||
3762 | /******************* Bit definition for I2C_CR1 register ********************/ |
6276 | /******************* Bit definition for I2C_CR1 register ********************/ |
- | 6277 | #define I2C_CR1_PE_Pos (0U) |
|
- | 6278 | #define I2C_CR1_PE_Msk (0x1U << I2C_CR1_PE_Pos) /*!< 0x00000001 */ |
|
3763 | #define I2C_CR1_PE ((uint32_t)0x00000001) /*!< Peripheral Enable */ |
6279 | #define I2C_CR1_PE I2C_CR1_PE_Msk /*!< Peripheral Enable */ |
- | 6280 | #define I2C_CR1_SMBUS_Pos (1U) |
|
- | 6281 | #define I2C_CR1_SMBUS_Msk (0x1U << I2C_CR1_SMBUS_Pos) /*!< 0x00000002 */ |
|
3764 | #define I2C_CR1_SMBUS ((uint32_t)0x00000002) /*!< SMBus Mode */ |
6282 | #define I2C_CR1_SMBUS I2C_CR1_SMBUS_Msk /*!< SMBus Mode */ |
- | 6283 | #define I2C_CR1_SMBTYPE_Pos (3U) |
|
- | 6284 | #define I2C_CR1_SMBTYPE_Msk (0x1U << I2C_CR1_SMBTYPE_Pos) /*!< 0x00000008 */ |
|
3765 | #define I2C_CR1_SMBTYPE ((uint32_t)0x00000008) /*!< SMBus Type */ |
6285 | #define I2C_CR1_SMBTYPE I2C_CR1_SMBTYPE_Msk /*!< SMBus Type */ |
- | 6286 | #define I2C_CR1_ENARP_Pos (4U) |
|
- | 6287 | #define I2C_CR1_ENARP_Msk (0x1U << I2C_CR1_ENARP_Pos) /*!< 0x00000010 */ |
|
3766 | #define I2C_CR1_ENARP ((uint32_t)0x00000010) /*!< ARP Enable */ |
6288 | #define I2C_CR1_ENARP I2C_CR1_ENARP_Msk /*!< ARP Enable */ |
- | 6289 | #define I2C_CR1_ENPEC_Pos (5U) |
|
- | 6290 | #define I2C_CR1_ENPEC_Msk (0x1U << I2C_CR1_ENPEC_Pos) /*!< 0x00000020 */ |
|
3767 | #define I2C_CR1_ENPEC ((uint32_t)0x00000020) /*!< PEC Enable */ |
6291 | #define I2C_CR1_ENPEC I2C_CR1_ENPEC_Msk /*!< PEC Enable */ |
- | 6292 | #define I2C_CR1_ENGC_Pos (6U) |
|
- | 6293 | #define I2C_CR1_ENGC_Msk (0x1U << I2C_CR1_ENGC_Pos) /*!< 0x00000040 */ |
|
3768 | #define I2C_CR1_ENGC ((uint32_t)0x00000040) /*!< General Call Enable */ |
6294 | #define I2C_CR1_ENGC I2C_CR1_ENGC_Msk /*!< General Call Enable */ |
- | 6295 | #define I2C_CR1_NOSTRETCH_Pos (7U) |
|
- | 6296 | #define I2C_CR1_NOSTRETCH_Msk (0x1U << I2C_CR1_NOSTRETCH_Pos) /*!< 0x00000080 */ |
|
3769 | #define I2C_CR1_NOSTRETCH ((uint32_t)0x00000080) /*!< Clock Stretching Disable (Slave mode) */ |
6297 | #define I2C_CR1_NOSTRETCH I2C_CR1_NOSTRETCH_Msk /*!< Clock Stretching Disable (Slave mode) */ |
- | 6298 | #define I2C_CR1_START_Pos (8U) |
|
- | 6299 | #define I2C_CR1_START_Msk (0x1U << I2C_CR1_START_Pos) /*!< 0x00000100 */ |
|
3770 | #define I2C_CR1_START ((uint32_t)0x00000100) /*!< Start Generation */ |
6300 | #define I2C_CR1_START I2C_CR1_START_Msk /*!< Start Generation */ |
- | 6301 | #define I2C_CR1_STOP_Pos (9U) |
|
- | 6302 | #define I2C_CR1_STOP_Msk (0x1U << I2C_CR1_STOP_Pos) /*!< 0x00000200 */ |
|
3771 | #define I2C_CR1_STOP ((uint32_t)0x00000200) /*!< Stop Generation */ |
6303 | #define I2C_CR1_STOP I2C_CR1_STOP_Msk /*!< Stop Generation */ |
- | 6304 | #define I2C_CR1_ACK_Pos (10U) |
|
- | 6305 | #define I2C_CR1_ACK_Msk (0x1U << I2C_CR1_ACK_Pos) /*!< 0x00000400 */ |
|
3772 | #define I2C_CR1_ACK ((uint32_t)0x00000400) /*!< Acknowledge Enable */ |
6306 | #define I2C_CR1_ACK I2C_CR1_ACK_Msk /*!< Acknowledge Enable */ |
- | 6307 | #define I2C_CR1_POS_Pos (11U) |
|
- | 6308 | #define I2C_CR1_POS_Msk (0x1U << I2C_CR1_POS_Pos) /*!< 0x00000800 */ |
|
3773 | #define I2C_CR1_POS ((uint32_t)0x00000800) /*!< Acknowledge/PEC Position (for data reception) */ |
6309 | #define I2C_CR1_POS I2C_CR1_POS_Msk /*!< Acknowledge/PEC Position (for data reception) */ |
- | 6310 | #define I2C_CR1_PEC_Pos (12U) |
|
- | 6311 | #define I2C_CR1_PEC_Msk (0x1U << I2C_CR1_PEC_Pos) /*!< 0x00001000 */ |
|
3774 | #define I2C_CR1_PEC ((uint32_t)0x00001000) /*!< Packet Error Checking */ |
6312 | #define I2C_CR1_PEC I2C_CR1_PEC_Msk /*!< Packet Error Checking */ |
- | 6313 | #define I2C_CR1_ALERT_Pos (13U) |
|
- | 6314 | #define I2C_CR1_ALERT_Msk (0x1U << I2C_CR1_ALERT_Pos) /*!< 0x00002000 */ |
|
3775 | #define I2C_CR1_ALERT ((uint32_t)0x00002000) /*!< SMBus Alert */ |
6315 | #define I2C_CR1_ALERT I2C_CR1_ALERT_Msk /*!< SMBus Alert */ |
- | 6316 | #define I2C_CR1_SWRST_Pos (15U) |
|
- | 6317 | #define I2C_CR1_SWRST_Msk (0x1U << I2C_CR1_SWRST_Pos) /*!< 0x00008000 */ |
|
3776 | #define I2C_CR1_SWRST ((uint32_t)0x00008000) /*!< Software Reset */ |
6318 | #define I2C_CR1_SWRST I2C_CR1_SWRST_Msk /*!< Software Reset */ |
3777 | 6319 | ||
3778 | /******************* Bit definition for I2C_CR2 register ********************/ |
6320 | /******************* Bit definition for I2C_CR2 register ********************/ |
- | 6321 | #define I2C_CR2_FREQ_Pos (0U) |
|
- | 6322 | #define I2C_CR2_FREQ_Msk (0x3FU << I2C_CR2_FREQ_Pos) /*!< 0x0000003F */ |
|
3779 | #define I2C_CR2_FREQ ((uint32_t)0x0000003F) /*!< FREQ[5:0] bits (Peripheral Clock Frequency) */ |
6323 | #define I2C_CR2_FREQ I2C_CR2_FREQ_Msk /*!< FREQ[5:0] bits (Peripheral Clock Frequency) */ |
3780 | #define I2C_CR2_FREQ_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
6324 | #define I2C_CR2_FREQ_0 (0x01U << I2C_CR2_FREQ_Pos) /*!< 0x00000001 */ |
3781 | #define I2C_CR2_FREQ_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
6325 | #define I2C_CR2_FREQ_1 (0x02U << I2C_CR2_FREQ_Pos) /*!< 0x00000002 */ |
3782 | #define I2C_CR2_FREQ_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
6326 | #define I2C_CR2_FREQ_2 (0x04U << I2C_CR2_FREQ_Pos) /*!< 0x00000004 */ |
3783 | #define I2C_CR2_FREQ_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
6327 | #define I2C_CR2_FREQ_3 (0x08U << I2C_CR2_FREQ_Pos) /*!< 0x00000008 */ |
3784 | #define I2C_CR2_FREQ_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
6328 | #define I2C_CR2_FREQ_4 (0x10U << I2C_CR2_FREQ_Pos) /*!< 0x00000010 */ |
3785 | #define I2C_CR2_FREQ_5 ((uint32_t)0x00000020) /*!< Bit 5 */ |
6329 | #define I2C_CR2_FREQ_5 (0x20U << I2C_CR2_FREQ_Pos) /*!< 0x00000020 */ |
3786 | 6330 | ||
- | 6331 | #define I2C_CR2_ITERREN_Pos (8U) |
|
- | 6332 | #define I2C_CR2_ITERREN_Msk (0x1U << I2C_CR2_ITERREN_Pos) /*!< 0x00000100 */ |
|
3787 | #define I2C_CR2_ITERREN ((uint32_t)0x00000100) /*!< Error Interrupt Enable */ |
6333 | #define I2C_CR2_ITERREN I2C_CR2_ITERREN_Msk /*!< Error Interrupt Enable */ |
- | 6334 | #define I2C_CR2_ITEVTEN_Pos (9U) |
|
- | 6335 | #define I2C_CR2_ITEVTEN_Msk (0x1U << I2C_CR2_ITEVTEN_Pos) /*!< 0x00000200 */ |
|
3788 | #define I2C_CR2_ITEVTEN ((uint32_t)0x00000200) /*!< Event Interrupt Enable */ |
6336 | #define I2C_CR2_ITEVTEN I2C_CR2_ITEVTEN_Msk /*!< Event Interrupt Enable */ |
- | 6337 | #define I2C_CR2_ITBUFEN_Pos (10U) |
|
- | 6338 | #define I2C_CR2_ITBUFEN_Msk (0x1U << I2C_CR2_ITBUFEN_Pos) /*!< 0x00000400 */ |
|
3789 | #define I2C_CR2_ITBUFEN ((uint32_t)0x00000400) /*!< Buffer Interrupt Enable */ |
6339 | #define I2C_CR2_ITBUFEN I2C_CR2_ITBUFEN_Msk /*!< Buffer Interrupt Enable */ |
- | 6340 | #define I2C_CR2_DMAEN_Pos (11U) |
|
- | 6341 | #define I2C_CR2_DMAEN_Msk (0x1U << I2C_CR2_DMAEN_Pos) /*!< 0x00000800 */ |
|
3790 | #define I2C_CR2_DMAEN ((uint32_t)0x00000800) /*!< DMA Requests Enable */ |
6342 | #define I2C_CR2_DMAEN I2C_CR2_DMAEN_Msk /*!< DMA Requests Enable */ |
- | 6343 | #define I2C_CR2_LAST_Pos (12U) |
|
- | 6344 | #define I2C_CR2_LAST_Msk (0x1U << I2C_CR2_LAST_Pos) /*!< 0x00001000 */ |
|
3791 | #define I2C_CR2_LAST ((uint32_t)0x00001000) /*!< DMA Last Transfer */ |
6345 | #define I2C_CR2_LAST I2C_CR2_LAST_Msk /*!< DMA Last Transfer */ |
3792 | 6346 | ||
3793 | /******************* Bit definition for I2C_OAR1 register *******************/ |
6347 | /******************* Bit definition for I2C_OAR1 register *******************/ |
3794 | #define I2C_OAR1_ADD1_7 ((uint32_t)0x000000FE) /*!< Interface Address */ |
6348 | #define I2C_OAR1_ADD1_7 ((uint32_t)0x000000FE) /*!< Interface Address */ |
3795 | #define I2C_OAR1_ADD8_9 ((uint32_t)0x00000300) /*!< Interface Address */ |
6349 | #define I2C_OAR1_ADD8_9 ((uint32_t)0x00000300) /*!< Interface Address */ |
3796 | - | ||
3797 | #define I2C_OAR1_ADD0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
- | |
3798 | #define I2C_OAR1_ADD1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
- | |
3799 | #define I2C_OAR1_ADD2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
- | |
3800 | #define I2C_OAR1_ADD3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
- | |
3801 | #define I2C_OAR1_ADD4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
- | |
3802 | #define I2C_OAR1_ADD5 ((uint32_t)0x00000020) /*!< Bit 5 */ |
- | |
3803 | #define I2C_OAR1_ADD6 ((uint32_t)0x00000040) /*!< Bit 6 */ |
- | |
3804 | #define I2C_OAR1_ADD7 ((uint32_t)0x00000080) /*!< Bit 7 */ |
- | |
3805 | #define I2C_OAR1_ADD8 ((uint32_t)0x00000100) /*!< Bit 8 */ |
- | |
3806 | #define I2C_OAR1_ADD9 ((uint32_t)0x00000200) /*!< Bit 9 */ |
- | |
3807 | 6350 | ||
- | 6351 | #define I2C_OAR1_ADD0_Pos (0U) |
|
- | 6352 | #define I2C_OAR1_ADD0_Msk (0x1U << I2C_OAR1_ADD0_Pos) /*!< 0x00000001 */ |
|
- | 6353 | #define I2C_OAR1_ADD0 I2C_OAR1_ADD0_Msk /*!< Bit 0 */ |
|
- | 6354 | #define I2C_OAR1_ADD1_Pos (1U) |
|
- | 6355 | #define I2C_OAR1_ADD1_Msk (0x1U << I2C_OAR1_ADD1_Pos) /*!< 0x00000002 */ |
|
- | 6356 | #define I2C_OAR1_ADD1 I2C_OAR1_ADD1_Msk /*!< Bit 1 */ |
|
- | 6357 | #define I2C_OAR1_ADD2_Pos (2U) |
|
- | 6358 | #define I2C_OAR1_ADD2_Msk (0x1U << I2C_OAR1_ADD2_Pos) /*!< 0x00000004 */ |
|
- | 6359 | #define I2C_OAR1_ADD2 I2C_OAR1_ADD2_Msk /*!< Bit 2 */ |
|
- | 6360 | #define I2C_OAR1_ADD3_Pos (3U) |
|
- | 6361 | #define I2C_OAR1_ADD3_Msk (0x1U << I2C_OAR1_ADD3_Pos) /*!< 0x00000008 */ |
|
- | 6362 | #define I2C_OAR1_ADD3 I2C_OAR1_ADD3_Msk /*!< Bit 3 */ |
|
- | 6363 | #define I2C_OAR1_ADD4_Pos (4U) |
|
- | 6364 | #define I2C_OAR1_ADD4_Msk (0x1U << I2C_OAR1_ADD4_Pos) /*!< 0x00000010 */ |
|
- | 6365 | #define I2C_OAR1_ADD4 I2C_OAR1_ADD4_Msk /*!< Bit 4 */ |
|
- | 6366 | #define I2C_OAR1_ADD5_Pos (5U) |
|
- | 6367 | #define I2C_OAR1_ADD5_Msk (0x1U << I2C_OAR1_ADD5_Pos) /*!< 0x00000020 */ |
|
- | 6368 | #define I2C_OAR1_ADD5 I2C_OAR1_ADD5_Msk /*!< Bit 5 */ |
|
- | 6369 | #define I2C_OAR1_ADD6_Pos (6U) |
|
- | 6370 | #define I2C_OAR1_ADD6_Msk (0x1U << I2C_OAR1_ADD6_Pos) /*!< 0x00000040 */ |
|
- | 6371 | #define I2C_OAR1_ADD6 I2C_OAR1_ADD6_Msk /*!< Bit 6 */ |
|
- | 6372 | #define I2C_OAR1_ADD7_Pos (7U) |
|
- | 6373 | #define I2C_OAR1_ADD7_Msk (0x1U << I2C_OAR1_ADD7_Pos) /*!< 0x00000080 */ |
|
- | 6374 | #define I2C_OAR1_ADD7 I2C_OAR1_ADD7_Msk /*!< Bit 7 */ |
|
- | 6375 | #define I2C_OAR1_ADD8_Pos (8U) |
|
- | 6376 | #define I2C_OAR1_ADD8_Msk (0x1U << I2C_OAR1_ADD8_Pos) /*!< 0x00000100 */ |
|
- | 6377 | #define I2C_OAR1_ADD8 I2C_OAR1_ADD8_Msk /*!< Bit 8 */ |
|
- | 6378 | #define I2C_OAR1_ADD9_Pos (9U) |
|
- | 6379 | #define I2C_OAR1_ADD9_Msk (0x1U << I2C_OAR1_ADD9_Pos) /*!< 0x00000200 */ |
|
- | 6380 | #define I2C_OAR1_ADD9 I2C_OAR1_ADD9_Msk /*!< Bit 9 */ |
|
- | 6381 | ||
- | 6382 | #define I2C_OAR1_ADDMODE_Pos (15U) |
|
- | 6383 | #define I2C_OAR1_ADDMODE_Msk (0x1U << I2C_OAR1_ADDMODE_Pos) /*!< 0x00008000 */ |
|
3808 | #define I2C_OAR1_ADDMODE ((uint32_t)0x00008000) /*!< Addressing Mode (Slave mode) */ |
6384 | #define I2C_OAR1_ADDMODE I2C_OAR1_ADDMODE_Msk /*!< Addressing Mode (Slave mode) */ |
3809 | 6385 | ||
3810 | /******************* Bit definition for I2C_OAR2 register *******************/ |
6386 | /******************* Bit definition for I2C_OAR2 register *******************/ |
- | 6387 | #define I2C_OAR2_ENDUAL_Pos (0U) |
|
- | 6388 | #define I2C_OAR2_ENDUAL_Msk (0x1U << I2C_OAR2_ENDUAL_Pos) /*!< 0x00000001 */ |
|
3811 | #define I2C_OAR2_ENDUAL ((uint32_t)0x00000001) /*!< Dual addressing mode enable */ |
6389 | #define I2C_OAR2_ENDUAL I2C_OAR2_ENDUAL_Msk /*!< Dual addressing mode enable */ |
- | 6390 | #define I2C_OAR2_ADD2_Pos (1U) |
|
- | 6391 | #define I2C_OAR2_ADD2_Msk (0x7FU << I2C_OAR2_ADD2_Pos) /*!< 0x000000FE */ |
|
3812 | #define I2C_OAR2_ADD2 ((uint32_t)0x000000FE) /*!< Interface address */ |
6392 | #define I2C_OAR2_ADD2 I2C_OAR2_ADD2_Msk /*!< Interface address */ |
3813 | 6393 | ||
3814 | /******************* Bit definition for I2C_SR1 register ********************/ |
6394 | /******************* Bit definition for I2C_SR1 register ********************/ |
- | 6395 | #define I2C_SR1_SB_Pos (0U) |
|
- | 6396 | #define I2C_SR1_SB_Msk (0x1U << I2C_SR1_SB_Pos) /*!< 0x00000001 */ |
|
3815 | #define I2C_SR1_SB ((uint32_t)0x00000001) /*!< Start Bit (Master mode) */ |
6397 | #define I2C_SR1_SB I2C_SR1_SB_Msk /*!< Start Bit (Master mode) */ |
- | 6398 | #define I2C_SR1_ADDR_Pos (1U) |
|
- | 6399 | #define I2C_SR1_ADDR_Msk (0x1U << I2C_SR1_ADDR_Pos) /*!< 0x00000002 */ |
|
3816 | #define I2C_SR1_ADDR ((uint32_t)0x00000002) /*!< Address sent (master mode)/matched (slave mode) */ |
6400 | #define I2C_SR1_ADDR I2C_SR1_ADDR_Msk /*!< Address sent (master mode)/matched (slave mode) */ |
- | 6401 | #define I2C_SR1_BTF_Pos (2U) |
|
- | 6402 | #define I2C_SR1_BTF_Msk (0x1U << I2C_SR1_BTF_Pos) /*!< 0x00000004 */ |
|
3817 | #define I2C_SR1_BTF ((uint32_t)0x00000004) /*!< Byte Transfer Finished */ |
6403 | #define I2C_SR1_BTF I2C_SR1_BTF_Msk /*!< Byte Transfer Finished */ |
- | 6404 | #define I2C_SR1_ADD10_Pos (3U) |
|
- | 6405 | #define I2C_SR1_ADD10_Msk (0x1U << I2C_SR1_ADD10_Pos) /*!< 0x00000008 */ |
|
3818 | #define I2C_SR1_ADD10 ((uint32_t)0x00000008) /*!< 10-bit header sent (Master mode) */ |
6406 | #define I2C_SR1_ADD10 I2C_SR1_ADD10_Msk /*!< 10-bit header sent (Master mode) */ |
- | 6407 | #define I2C_SR1_STOPF_Pos (4U) |
|
- | 6408 | #define I2C_SR1_STOPF_Msk (0x1U << I2C_SR1_STOPF_Pos) /*!< 0x00000010 */ |
|
3819 | #define I2C_SR1_STOPF ((uint32_t)0x00000010) /*!< Stop detection (Slave mode) */ |
6409 | #define I2C_SR1_STOPF I2C_SR1_STOPF_Msk /*!< Stop detection (Slave mode) */ |
- | 6410 | #define I2C_SR1_RXNE_Pos (6U) |
|
- | 6411 | #define I2C_SR1_RXNE_Msk (0x1U << I2C_SR1_RXNE_Pos) /*!< 0x00000040 */ |
|
3820 | #define I2C_SR1_RXNE ((uint32_t)0x00000040) /*!< Data Register not Empty (receivers) */ |
6412 | #define I2C_SR1_RXNE I2C_SR1_RXNE_Msk /*!< Data Register not Empty (receivers) */ |
- | 6413 | #define I2C_SR1_TXE_Pos (7U) |
|
- | 6414 | #define I2C_SR1_TXE_Msk (0x1U << I2C_SR1_TXE_Pos) /*!< 0x00000080 */ |
|
3821 | #define I2C_SR1_TXE ((uint32_t)0x00000080) /*!< Data Register Empty (transmitters) */ |
6415 | #define I2C_SR1_TXE I2C_SR1_TXE_Msk /*!< Data Register Empty (transmitters) */ |
- | 6416 | #define I2C_SR1_BERR_Pos (8U) |
|
- | 6417 | #define I2C_SR1_BERR_Msk (0x1U << I2C_SR1_BERR_Pos) /*!< 0x00000100 */ |
|
3822 | #define I2C_SR1_BERR ((uint32_t)0x00000100) /*!< Bus Error */ |
6418 | #define I2C_SR1_BERR I2C_SR1_BERR_Msk /*!< Bus Error */ |
- | 6419 | #define I2C_SR1_ARLO_Pos (9U) |
|
- | 6420 | #define I2C_SR1_ARLO_Msk (0x1U << I2C_SR1_ARLO_Pos) /*!< 0x00000200 */ |
|
3823 | #define I2C_SR1_ARLO ((uint32_t)0x00000200) /*!< Arbitration Lost (master mode) */ |
6421 | #define I2C_SR1_ARLO I2C_SR1_ARLO_Msk /*!< Arbitration Lost (master mode) */ |
- | 6422 | #define I2C_SR1_AF_Pos (10U) |
|
- | 6423 | #define I2C_SR1_AF_Msk (0x1U << I2C_SR1_AF_Pos) /*!< 0x00000400 */ |
|
3824 | #define I2C_SR1_AF ((uint32_t)0x00000400) /*!< Acknowledge Failure */ |
6424 | #define I2C_SR1_AF I2C_SR1_AF_Msk /*!< Acknowledge Failure */ |
- | 6425 | #define I2C_SR1_OVR_Pos (11U) |
|
- | 6426 | #define I2C_SR1_OVR_Msk (0x1U << I2C_SR1_OVR_Pos) /*!< 0x00000800 */ |
|
3825 | #define I2C_SR1_OVR ((uint32_t)0x00000800) /*!< Overrun/Underrun */ |
6427 | #define I2C_SR1_OVR I2C_SR1_OVR_Msk /*!< Overrun/Underrun */ |
- | 6428 | #define I2C_SR1_PECERR_Pos (12U) |
|
- | 6429 | #define I2C_SR1_PECERR_Msk (0x1U << I2C_SR1_PECERR_Pos) /*!< 0x00001000 */ |
|
3826 | #define I2C_SR1_PECERR ((uint32_t)0x00001000) /*!< PEC Error in reception */ |
6430 | #define I2C_SR1_PECERR I2C_SR1_PECERR_Msk /*!< PEC Error in reception */ |
- | 6431 | #define I2C_SR1_TIMEOUT_Pos (14U) |
|
- | 6432 | #define I2C_SR1_TIMEOUT_Msk (0x1U << I2C_SR1_TIMEOUT_Pos) /*!< 0x00004000 */ |
|
3827 | #define I2C_SR1_TIMEOUT ((uint32_t)0x00004000) /*!< Timeout or Tlow Error */ |
6433 | #define I2C_SR1_TIMEOUT I2C_SR1_TIMEOUT_Msk /*!< Timeout or Tlow Error */ |
- | 6434 | #define I2C_SR1_SMBALERT_Pos (15U) |
|
- | 6435 | #define I2C_SR1_SMBALERT_Msk (0x1U << I2C_SR1_SMBALERT_Pos) /*!< 0x00008000 */ |
|
3828 | #define I2C_SR1_SMBALERT ((uint32_t)0x00008000) /*!< SMBus Alert */ |
6436 | #define I2C_SR1_SMBALERT I2C_SR1_SMBALERT_Msk /*!< SMBus Alert */ |
3829 | 6437 | ||
3830 | /******************* Bit definition for I2C_SR2 register ********************/ |
6438 | /******************* Bit definition for I2C_SR2 register ********************/ |
- | 6439 | #define I2C_SR2_MSL_Pos (0U) |
|
- | 6440 | #define I2C_SR2_MSL_Msk (0x1U << I2C_SR2_MSL_Pos) /*!< 0x00000001 */ |
|
3831 | #define I2C_SR2_MSL ((uint32_t)0x00000001) /*!< Master/Slave */ |
6441 | #define I2C_SR2_MSL I2C_SR2_MSL_Msk /*!< Master/Slave */ |
- | 6442 | #define I2C_SR2_BUSY_Pos (1U) |
|
- | 6443 | #define I2C_SR2_BUSY_Msk (0x1U << I2C_SR2_BUSY_Pos) /*!< 0x00000002 */ |
|
3832 | #define I2C_SR2_BUSY ((uint32_t)0x00000002) /*!< Bus Busy */ |
6444 | #define I2C_SR2_BUSY I2C_SR2_BUSY_Msk /*!< Bus Busy */ |
- | 6445 | #define I2C_SR2_TRA_Pos (2U) |
|
- | 6446 | #define I2C_SR2_TRA_Msk (0x1U << I2C_SR2_TRA_Pos) /*!< 0x00000004 */ |
|
3833 | #define I2C_SR2_TRA ((uint32_t)0x00000004) /*!< Transmitter/Receiver */ |
6447 | #define I2C_SR2_TRA I2C_SR2_TRA_Msk /*!< Transmitter/Receiver */ |
- | 6448 | #define I2C_SR2_GENCALL_Pos (4U) |
|
- | 6449 | #define I2C_SR2_GENCALL_Msk (0x1U << I2C_SR2_GENCALL_Pos) /*!< 0x00000010 */ |
|
3834 | #define I2C_SR2_GENCALL ((uint32_t)0x00000010) /*!< General Call Address (Slave mode) */ |
6450 | #define I2C_SR2_GENCALL I2C_SR2_GENCALL_Msk /*!< General Call Address (Slave mode) */ |
- | 6451 | #define I2C_SR2_SMBDEFAULT_Pos (5U) |
|
- | 6452 | #define I2C_SR2_SMBDEFAULT_Msk (0x1U << I2C_SR2_SMBDEFAULT_Pos) /*!< 0x00000020 */ |
|
3835 | #define I2C_SR2_SMBDEFAULT ((uint32_t)0x00000020) /*!< SMBus Device Default Address (Slave mode) */ |
6453 | #define I2C_SR2_SMBDEFAULT I2C_SR2_SMBDEFAULT_Msk /*!< SMBus Device Default Address (Slave mode) */ |
- | 6454 | #define I2C_SR2_SMBHOST_Pos (6U) |
|
- | 6455 | #define I2C_SR2_SMBHOST_Msk (0x1U << I2C_SR2_SMBHOST_Pos) /*!< 0x00000040 */ |
|
3836 | #define I2C_SR2_SMBHOST ((uint32_t)0x00000040) /*!< SMBus Host Header (Slave mode) */ |
6456 | #define I2C_SR2_SMBHOST I2C_SR2_SMBHOST_Msk /*!< SMBus Host Header (Slave mode) */ |
- | 6457 | #define I2C_SR2_DUALF_Pos (7U) |
|
- | 6458 | #define I2C_SR2_DUALF_Msk (0x1U << I2C_SR2_DUALF_Pos) /*!< 0x00000080 */ |
|
3837 | #define I2C_SR2_DUALF ((uint32_t)0x00000080) /*!< Dual Flag (Slave mode) */ |
6459 | #define I2C_SR2_DUALF I2C_SR2_DUALF_Msk /*!< Dual Flag (Slave mode) */ |
- | 6460 | #define I2C_SR2_PEC_Pos (8U) |
|
- | 6461 | #define I2C_SR2_PEC_Msk (0xFFU << I2C_SR2_PEC_Pos) /*!< 0x0000FF00 */ |
|
3838 | #define I2C_SR2_PEC ((uint32_t)0x0000FF00) /*!< Packet Error Checking Register */ |
6462 | #define I2C_SR2_PEC I2C_SR2_PEC_Msk /*!< Packet Error Checking Register */ |
3839 | 6463 | ||
3840 | /******************* Bit definition for I2C_CCR register ********************/ |
6464 | /******************* Bit definition for I2C_CCR register ********************/ |
- | 6465 | #define I2C_CCR_CCR_Pos (0U) |
|
- | 6466 | #define I2C_CCR_CCR_Msk (0xFFFU << I2C_CCR_CCR_Pos) /*!< 0x00000FFF */ |
|
3841 | #define I2C_CCR_CCR ((uint32_t)0x00000FFF) /*!< Clock Control Register in Fast/Standard mode (Master mode) */ |
6467 | #define I2C_CCR_CCR I2C_CCR_CCR_Msk /*!< Clock Control Register in Fast/Standard mode (Master mode) */ |
- | 6468 | #define I2C_CCR_DUTY_Pos (14U) |
|
- | 6469 | #define I2C_CCR_DUTY_Msk (0x1U << I2C_CCR_DUTY_Pos) /*!< 0x00004000 */ |
|
3842 | #define I2C_CCR_DUTY ((uint32_t)0x00004000) /*!< Fast Mode Duty Cycle */ |
6470 | #define I2C_CCR_DUTY I2C_CCR_DUTY_Msk /*!< Fast Mode Duty Cycle */ |
- | 6471 | #define I2C_CCR_FS_Pos (15U) |
|
- | 6472 | #define I2C_CCR_FS_Msk (0x1U << I2C_CCR_FS_Pos) /*!< 0x00008000 */ |
|
3843 | #define I2C_CCR_FS ((uint32_t)0x00008000) /*!< I2C Master Mode Selection */ |
6473 | #define I2C_CCR_FS I2C_CCR_FS_Msk /*!< I2C Master Mode Selection */ |
3844 | 6474 | ||
3845 | /****************** Bit definition for I2C_TRISE register *******************/ |
6475 | /****************** Bit definition for I2C_TRISE register *******************/ |
- | 6476 | #define I2C_TRISE_TRISE_Pos (0U) |
|
- | 6477 | #define I2C_TRISE_TRISE_Msk (0x3FU << I2C_TRISE_TRISE_Pos) /*!< 0x0000003F */ |
|
3846 | #define I2C_TRISE_TRISE ((uint32_t)0x0000003F) /*!< Maximum Rise Time in Fast/Standard mode (Master mode) */ |
6478 | #define I2C_TRISE_TRISE I2C_TRISE_TRISE_Msk /*!< Maximum Rise Time in Fast/Standard mode (Master mode) */ |
3847 | 6479 | ||
3848 | /******************************************************************************/ |
6480 | /******************************************************************************/ |
3849 | /* */ |
6481 | /* */ |
3850 | /* Universal Synchronous Asynchronous Receiver Transmitter */ |
6482 | /* Universal Synchronous Asynchronous Receiver Transmitter */ |
3851 | /* */ |
6483 | /* */ |
3852 | /******************************************************************************/ |
6484 | /******************************************************************************/ |
3853 | 6485 | ||
3854 | /******************* Bit definition for USART_SR register *******************/ |
6486 | /******************* Bit definition for USART_SR register *******************/ |
- | 6487 | #define USART_SR_PE_Pos (0U) |
|
- | 6488 | #define USART_SR_PE_Msk (0x1U << USART_SR_PE_Pos) /*!< 0x00000001 */ |
|
3855 | #define USART_SR_PE ((uint32_t)0x00000001) /*!< Parity Error */ |
6489 | #define USART_SR_PE USART_SR_PE_Msk /*!< Parity Error */ |
- | 6490 | #define USART_SR_FE_Pos (1U) |
|
- | 6491 | #define USART_SR_FE_Msk (0x1U << USART_SR_FE_Pos) /*!< 0x00000002 */ |
|
3856 | #define USART_SR_FE ((uint32_t)0x00000002) /*!< Framing Error */ |
6492 | #define USART_SR_FE USART_SR_FE_Msk /*!< Framing Error */ |
- | 6493 | #define USART_SR_NE_Pos (2U) |
|
- | 6494 | #define USART_SR_NE_Msk (0x1U << USART_SR_NE_Pos) /*!< 0x00000004 */ |
|
3857 | #define USART_SR_NE ((uint32_t)0x00000004) /*!< Noise Error Flag */ |
6495 | #define USART_SR_NE USART_SR_NE_Msk /*!< Noise Error Flag */ |
- | 6496 | #define USART_SR_ORE_Pos (3U) |
|
- | 6497 | #define USART_SR_ORE_Msk (0x1U << USART_SR_ORE_Pos) /*!< 0x00000008 */ |
|
3858 | #define USART_SR_ORE ((uint32_t)0x00000008) /*!< OverRun Error */ |
6498 | #define USART_SR_ORE USART_SR_ORE_Msk /*!< OverRun Error */ |
- | 6499 | #define USART_SR_IDLE_Pos (4U) |
|
- | 6500 | #define USART_SR_IDLE_Msk (0x1U << USART_SR_IDLE_Pos) /*!< 0x00000010 */ |
|
3859 | #define USART_SR_IDLE ((uint32_t)0x00000010) /*!< IDLE line detected */ |
6501 | #define USART_SR_IDLE USART_SR_IDLE_Msk /*!< IDLE line detected */ |
- | 6502 | #define USART_SR_RXNE_Pos (5U) |
|
- | 6503 | #define USART_SR_RXNE_Msk (0x1U << USART_SR_RXNE_Pos) /*!< 0x00000020 */ |
|
3860 | #define USART_SR_RXNE ((uint32_t)0x00000020) /*!< Read Data Register Not Empty */ |
6504 | #define USART_SR_RXNE USART_SR_RXNE_Msk /*!< Read Data Register Not Empty */ |
- | 6505 | #define USART_SR_TC_Pos (6U) |
|
- | 6506 | #define USART_SR_TC_Msk (0x1U << USART_SR_TC_Pos) /*!< 0x00000040 */ |
|
3861 | #define USART_SR_TC ((uint32_t)0x00000040) /*!< Transmission Complete */ |
6507 | #define USART_SR_TC USART_SR_TC_Msk /*!< Transmission Complete */ |
- | 6508 | #define USART_SR_TXE_Pos (7U) |
|
- | 6509 | #define USART_SR_TXE_Msk (0x1U << USART_SR_TXE_Pos) /*!< 0x00000080 */ |
|
3862 | #define USART_SR_TXE ((uint32_t)0x00000080) /*!< Transmit Data Register Empty */ |
6510 | #define USART_SR_TXE USART_SR_TXE_Msk /*!< Transmit Data Register Empty */ |
- | 6511 | #define USART_SR_LBD_Pos (8U) |
|
- | 6512 | #define USART_SR_LBD_Msk (0x1U << USART_SR_LBD_Pos) /*!< 0x00000100 */ |
|
3863 | #define USART_SR_LBD ((uint32_t)0x00000100) /*!< LIN Break Detection Flag */ |
6513 | #define USART_SR_LBD USART_SR_LBD_Msk /*!< LIN Break Detection Flag */ |
- | 6514 | #define USART_SR_CTS_Pos (9U) |
|
- | 6515 | #define USART_SR_CTS_Msk (0x1U << USART_SR_CTS_Pos) /*!< 0x00000200 */ |
|
3864 | #define USART_SR_CTS ((uint32_t)0x00000200) /*!< CTS Flag */ |
6516 | #define USART_SR_CTS USART_SR_CTS_Msk /*!< CTS Flag */ |
3865 | 6517 | ||
3866 | /******************* Bit definition for USART_DR register *******************/ |
6518 | /******************* Bit definition for USART_DR register *******************/ |
- | 6519 | #define USART_DR_DR_Pos (0U) |
|
- | 6520 | #define USART_DR_DR_Msk (0x1FFU << USART_DR_DR_Pos) /*!< 0x000001FF */ |
|
3867 | #define USART_DR_DR ((uint32_t)0x000001FF) /*!< Data value */ |
6521 | #define USART_DR_DR USART_DR_DR_Msk /*!< Data value */ |
3868 | 6522 | ||
3869 | /****************** Bit definition for USART_BRR register *******************/ |
6523 | /****************** Bit definition for USART_BRR register *******************/ |
- | 6524 | #define USART_BRR_DIV_Fraction_Pos (0U) |
|
- | 6525 | #define USART_BRR_DIV_Fraction_Msk (0xFU << USART_BRR_DIV_Fraction_Pos) /*!< 0x0000000F */ |
|
3870 | #define USART_BRR_DIV_Fraction ((uint32_t)0x0000000F) /*!< Fraction of USARTDIV */ |
6526 | #define USART_BRR_DIV_Fraction USART_BRR_DIV_Fraction_Msk /*!< Fraction of USARTDIV */ |
- | 6527 | #define USART_BRR_DIV_Mantissa_Pos (4U) |
|
- | 6528 | #define USART_BRR_DIV_Mantissa_Msk (0xFFFU << USART_BRR_DIV_Mantissa_Pos) /*!< 0x0000FFF0 */ |
|
3871 | #define USART_BRR_DIV_Mantissa ((uint32_t)0x0000FFF0) /*!< Mantissa of USARTDIV */ |
6529 | #define USART_BRR_DIV_Mantissa USART_BRR_DIV_Mantissa_Msk /*!< Mantissa of USARTDIV */ |
3872 | 6530 | ||
3873 | /****************** Bit definition for USART_CR1 register *******************/ |
6531 | /****************** Bit definition for USART_CR1 register *******************/ |
- | 6532 | #define USART_CR1_SBK_Pos (0U) |
|
- | 6533 | #define USART_CR1_SBK_Msk (0x1U << USART_CR1_SBK_Pos) /*!< 0x00000001 */ |
|
3874 | #define USART_CR1_SBK ((uint32_t)0x00000001) /*!< Send Break */ |
6534 | #define USART_CR1_SBK USART_CR1_SBK_Msk /*!< Send Break */ |
- | 6535 | #define USART_CR1_RWU_Pos (1U) |
|
- | 6536 | #define USART_CR1_RWU_Msk (0x1U << USART_CR1_RWU_Pos) /*!< 0x00000002 */ |
|
3875 | #define USART_CR1_RWU ((uint32_t)0x00000002) /*!< Receiver wakeup */ |
6537 | #define USART_CR1_RWU USART_CR1_RWU_Msk /*!< Receiver wakeup */ |
- | 6538 | #define USART_CR1_RE_Pos (2U) |
|
- | 6539 | #define USART_CR1_RE_Msk (0x1U << USART_CR1_RE_Pos) /*!< 0x00000004 */ |
|
3876 | #define USART_CR1_RE ((uint32_t)0x00000004) /*!< Receiver Enable */ |
6540 | #define USART_CR1_RE USART_CR1_RE_Msk /*!< Receiver Enable */ |
- | 6541 | #define USART_CR1_TE_Pos (3U) |
|
- | 6542 | #define USART_CR1_TE_Msk (0x1U << USART_CR1_TE_Pos) /*!< 0x00000008 */ |
|
3877 | #define USART_CR1_TE ((uint32_t)0x00000008) /*!< Transmitter Enable */ |
6543 | #define USART_CR1_TE USART_CR1_TE_Msk /*!< Transmitter Enable */ |
- | 6544 | #define USART_CR1_IDLEIE_Pos (4U) |
|
- | 6545 | #define USART_CR1_IDLEIE_Msk (0x1U << USART_CR1_IDLEIE_Pos) /*!< 0x00000010 */ |
|
3878 | #define USART_CR1_IDLEIE ((uint32_t)0x00000010) /*!< IDLE Interrupt Enable */ |
6546 | #define USART_CR1_IDLEIE USART_CR1_IDLEIE_Msk /*!< IDLE Interrupt Enable */ |
- | 6547 | #define USART_CR1_RXNEIE_Pos (5U) |
|
- | 6548 | #define USART_CR1_RXNEIE_Msk (0x1U << USART_CR1_RXNEIE_Pos) /*!< 0x00000020 */ |
|
3879 | #define USART_CR1_RXNEIE ((uint32_t)0x00000020) /*!< RXNE Interrupt Enable */ |
6549 | #define USART_CR1_RXNEIE USART_CR1_RXNEIE_Msk /*!< RXNE Interrupt Enable */ |
- | 6550 | #define USART_CR1_TCIE_Pos (6U) |
|
- | 6551 | #define USART_CR1_TCIE_Msk (0x1U << USART_CR1_TCIE_Pos) /*!< 0x00000040 */ |
|
3880 | #define USART_CR1_TCIE ((uint32_t)0x00000040) /*!< Transmission Complete Interrupt Enable */ |
6552 | #define USART_CR1_TCIE USART_CR1_TCIE_Msk /*!< Transmission Complete Interrupt Enable */ |
- | 6553 | #define USART_CR1_TXEIE_Pos (7U) |
|
- | 6554 | #define USART_CR1_TXEIE_Msk (0x1U << USART_CR1_TXEIE_Pos) /*!< 0x00000080 */ |
|
3881 | #define USART_CR1_TXEIE ((uint32_t)0x00000080) /*!< PE Interrupt Enable */ |
6555 | #define USART_CR1_TXEIE USART_CR1_TXEIE_Msk /*!< PE Interrupt Enable */ |
- | 6556 | #define USART_CR1_PEIE_Pos (8U) |
|
- | 6557 | #define USART_CR1_PEIE_Msk (0x1U << USART_CR1_PEIE_Pos) /*!< 0x00000100 */ |
|
3882 | #define USART_CR1_PEIE ((uint32_t)0x00000100) /*!< PE Interrupt Enable */ |
6558 | #define USART_CR1_PEIE USART_CR1_PEIE_Msk /*!< PE Interrupt Enable */ |
- | 6559 | #define USART_CR1_PS_Pos (9U) |
|
- | 6560 | #define USART_CR1_PS_Msk (0x1U << USART_CR1_PS_Pos) /*!< 0x00000200 */ |
|
3883 | #define USART_CR1_PS ((uint32_t)0x00000200) /*!< Parity Selection */ |
6561 | #define USART_CR1_PS USART_CR1_PS_Msk /*!< Parity Selection */ |
- | 6562 | #define USART_CR1_PCE_Pos (10U) |
|
- | 6563 | #define USART_CR1_PCE_Msk (0x1U << USART_CR1_PCE_Pos) /*!< 0x00000400 */ |
|
3884 | #define USART_CR1_PCE ((uint32_t)0x00000400) /*!< Parity Control Enable */ |
6564 | #define USART_CR1_PCE USART_CR1_PCE_Msk /*!< Parity Control Enable */ |
- | 6565 | #define USART_CR1_WAKE_Pos (11U) |
|
- | 6566 | #define USART_CR1_WAKE_Msk (0x1U << USART_CR1_WAKE_Pos) /*!< 0x00000800 */ |
|
3885 | #define USART_CR1_WAKE ((uint32_t)0x00000800) /*!< Wakeup method */ |
6567 | #define USART_CR1_WAKE USART_CR1_WAKE_Msk /*!< Wakeup method */ |
- | 6568 | #define USART_CR1_M_Pos (12U) |
|
- | 6569 | #define USART_CR1_M_Msk (0x1U << USART_CR1_M_Pos) /*!< 0x00001000 */ |
|
3886 | #define USART_CR1_M ((uint32_t)0x00001000) /*!< Word length */ |
6570 | #define USART_CR1_M USART_CR1_M_Msk /*!< Word length */ |
- | 6571 | #define USART_CR1_UE_Pos (13U) |
|
- | 6572 | #define USART_CR1_UE_Msk (0x1U << USART_CR1_UE_Pos) /*!< 0x00002000 */ |
|
3887 | #define USART_CR1_UE ((uint32_t)0x00002000) /*!< USART Enable */ |
6573 | #define USART_CR1_UE USART_CR1_UE_Msk /*!< USART Enable */ |
3888 | 6574 | ||
3889 | /****************** Bit definition for USART_CR2 register *******************/ |
6575 | /****************** Bit definition for USART_CR2 register *******************/ |
- | 6576 | #define USART_CR2_ADD_Pos (0U) |
|
- | 6577 | #define USART_CR2_ADD_Msk (0xFU << USART_CR2_ADD_Pos) /*!< 0x0000000F */ |
|
3890 | #define USART_CR2_ADD ((uint32_t)0x0000000F) /*!< Address of the USART node */ |
6578 | #define USART_CR2_ADD USART_CR2_ADD_Msk /*!< Address of the USART node */ |
- | 6579 | #define USART_CR2_LBDL_Pos (5U) |
|
- | 6580 | #define USART_CR2_LBDL_Msk (0x1U << USART_CR2_LBDL_Pos) /*!< 0x00000020 */ |
|
3891 | #define USART_CR2_LBDL ((uint32_t)0x00000020) /*!< LIN Break Detection Length */ |
6581 | #define USART_CR2_LBDL USART_CR2_LBDL_Msk /*!< LIN Break Detection Length */ |
- | 6582 | #define USART_CR2_LBDIE_Pos (6U) |
|
- | 6583 | #define USART_CR2_LBDIE_Msk (0x1U << USART_CR2_LBDIE_Pos) /*!< 0x00000040 */ |
|
3892 | #define USART_CR2_LBDIE ((uint32_t)0x00000040) /*!< LIN Break Detection Interrupt Enable */ |
6584 | #define USART_CR2_LBDIE USART_CR2_LBDIE_Msk /*!< LIN Break Detection Interrupt Enable */ |
- | 6585 | #define USART_CR2_LBCL_Pos (8U) |
|
- | 6586 | #define USART_CR2_LBCL_Msk (0x1U << USART_CR2_LBCL_Pos) /*!< 0x00000100 */ |
|
3893 | #define USART_CR2_LBCL ((uint32_t)0x00000100) /*!< Last Bit Clock pulse */ |
6587 | #define USART_CR2_LBCL USART_CR2_LBCL_Msk /*!< Last Bit Clock pulse */ |
- | 6588 | #define USART_CR2_CPHA_Pos (9U) |
|
- | 6589 | #define USART_CR2_CPHA_Msk (0x1U << USART_CR2_CPHA_Pos) /*!< 0x00000200 */ |
|
3894 | #define USART_CR2_CPHA ((uint32_t)0x00000200) /*!< Clock Phase */ |
6590 | #define USART_CR2_CPHA USART_CR2_CPHA_Msk /*!< Clock Phase */ |
- | 6591 | #define USART_CR2_CPOL_Pos (10U) |
|
- | 6592 | #define USART_CR2_CPOL_Msk (0x1U << USART_CR2_CPOL_Pos) /*!< 0x00000400 */ |
|
3895 | #define USART_CR2_CPOL ((uint32_t)0x00000400) /*!< Clock Polarity */ |
6593 | #define USART_CR2_CPOL USART_CR2_CPOL_Msk /*!< Clock Polarity */ |
- | 6594 | #define USART_CR2_CLKEN_Pos (11U) |
|
- | 6595 | #define USART_CR2_CLKEN_Msk (0x1U << USART_CR2_CLKEN_Pos) /*!< 0x00000800 */ |
|
3896 | #define USART_CR2_CLKEN ((uint32_t)0x00000800) /*!< Clock Enable */ |
6596 | #define USART_CR2_CLKEN USART_CR2_CLKEN_Msk /*!< Clock Enable */ |
3897 | 6597 | ||
- | 6598 | #define USART_CR2_STOP_Pos (12U) |
|
- | 6599 | #define USART_CR2_STOP_Msk (0x3U << USART_CR2_STOP_Pos) /*!< 0x00003000 */ |
|
3898 | #define USART_CR2_STOP ((uint32_t)0x00003000) /*!< STOP[1:0] bits (STOP bits) */ |
6600 | #define USART_CR2_STOP USART_CR2_STOP_Msk /*!< STOP[1:0] bits (STOP bits) */ |
3899 | #define USART_CR2_STOP_0 ((uint32_t)0x00001000) /*!< Bit 0 */ |
6601 | #define USART_CR2_STOP_0 (0x1U << USART_CR2_STOP_Pos) /*!< 0x00001000 */ |
3900 | #define USART_CR2_STOP_1 ((uint32_t)0x00002000) /*!< Bit 1 */ |
6602 | #define USART_CR2_STOP_1 (0x2U << USART_CR2_STOP_Pos) /*!< 0x00002000 */ |
3901 | 6603 | ||
- | 6604 | #define USART_CR2_LINEN_Pos (14U) |
|
- | 6605 | #define USART_CR2_LINEN_Msk (0x1U << USART_CR2_LINEN_Pos) /*!< 0x00004000 */ |
|
3902 | #define USART_CR2_LINEN ((uint32_t)0x00004000) /*!< LIN mode enable */ |
6606 | #define USART_CR2_LINEN USART_CR2_LINEN_Msk /*!< LIN mode enable */ |
3903 | 6607 | ||
3904 | /****************** Bit definition for USART_CR3 register *******************/ |
6608 | /****************** Bit definition for USART_CR3 register *******************/ |
- | 6609 | #define USART_CR3_EIE_Pos (0U) |
|
- | 6610 | #define USART_CR3_EIE_Msk (0x1U << USART_CR3_EIE_Pos) /*!< 0x00000001 */ |
|
3905 | #define USART_CR3_EIE ((uint32_t)0x00000001) /*!< Error Interrupt Enable */ |
6611 | #define USART_CR3_EIE USART_CR3_EIE_Msk /*!< Error Interrupt Enable */ |
- | 6612 | #define USART_CR3_IREN_Pos (1U) |
|
- | 6613 | #define USART_CR3_IREN_Msk (0x1U << USART_CR3_IREN_Pos) /*!< 0x00000002 */ |
|
3906 | #define USART_CR3_IREN ((uint32_t)0x00000002) /*!< IrDA mode Enable */ |
6614 | #define USART_CR3_IREN USART_CR3_IREN_Msk /*!< IrDA mode Enable */ |
- | 6615 | #define USART_CR3_IRLP_Pos (2U) |
|
- | 6616 | #define USART_CR3_IRLP_Msk (0x1U << USART_CR3_IRLP_Pos) /*!< 0x00000004 */ |
|
3907 | #define USART_CR3_IRLP ((uint32_t)0x00000004) /*!< IrDA Low-Power */ |
6617 | #define USART_CR3_IRLP USART_CR3_IRLP_Msk /*!< IrDA Low-Power */ |
- | 6618 | #define USART_CR3_HDSEL_Pos (3U) |
|
- | 6619 | #define USART_CR3_HDSEL_Msk (0x1U << USART_CR3_HDSEL_Pos) /*!< 0x00000008 */ |
|
3908 | #define USART_CR3_HDSEL ((uint32_t)0x00000008) /*!< Half-Duplex Selection */ |
6620 | #define USART_CR3_HDSEL USART_CR3_HDSEL_Msk /*!< Half-Duplex Selection */ |
- | 6621 | #define USART_CR3_NACK_Pos (4U) |
|
- | 6622 | #define USART_CR3_NACK_Msk (0x1U << USART_CR3_NACK_Pos) /*!< 0x00000010 */ |
|
3909 | #define USART_CR3_NACK ((uint32_t)0x00000010) /*!< Smartcard NACK enable */ |
6623 | #define USART_CR3_NACK USART_CR3_NACK_Msk /*!< Smartcard NACK enable */ |
- | 6624 | #define USART_CR3_SCEN_Pos (5U) |
|
- | 6625 | #define USART_CR3_SCEN_Msk (0x1U << USART_CR3_SCEN_Pos) /*!< 0x00000020 */ |
|
3910 | #define USART_CR3_SCEN ((uint32_t)0x00000020) /*!< Smartcard mode enable */ |
6626 | #define USART_CR3_SCEN USART_CR3_SCEN_Msk /*!< Smartcard mode enable */ |
- | 6627 | #define USART_CR3_DMAR_Pos (6U) |
|
- | 6628 | #define USART_CR3_DMAR_Msk (0x1U << USART_CR3_DMAR_Pos) /*!< 0x00000040 */ |
|
3911 | #define USART_CR3_DMAR ((uint32_t)0x00000040) /*!< DMA Enable Receiver */ |
6629 | #define USART_CR3_DMAR USART_CR3_DMAR_Msk /*!< DMA Enable Receiver */ |
- | 6630 | #define USART_CR3_DMAT_Pos (7U) |
|
- | 6631 | #define USART_CR3_DMAT_Msk (0x1U << USART_CR3_DMAT_Pos) /*!< 0x00000080 */ |
|
3912 | #define USART_CR3_DMAT ((uint32_t)0x00000080) /*!< DMA Enable Transmitter */ |
6632 | #define USART_CR3_DMAT USART_CR3_DMAT_Msk /*!< DMA Enable Transmitter */ |
- | 6633 | #define USART_CR3_RTSE_Pos (8U) |
|
- | 6634 | #define USART_CR3_RTSE_Msk (0x1U << USART_CR3_RTSE_Pos) /*!< 0x00000100 */ |
|
3913 | #define USART_CR3_RTSE ((uint32_t)0x00000100) /*!< RTS Enable */ |
6635 | #define USART_CR3_RTSE USART_CR3_RTSE_Msk /*!< RTS Enable */ |
- | 6636 | #define USART_CR3_CTSE_Pos (9U) |
|
- | 6637 | #define USART_CR3_CTSE_Msk (0x1U << USART_CR3_CTSE_Pos) /*!< 0x00000200 */ |
|
3914 | #define USART_CR3_CTSE ((uint32_t)0x00000200) /*!< CTS Enable */ |
6638 | #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ |
- | 6639 | #define USART_CR3_CTSIE_Pos (10U) |
|
- | 6640 | #define USART_CR3_CTSIE_Msk (0x1U << USART_CR3_CTSIE_Pos) /*!< 0x00000400 */ |
|
3915 | #define USART_CR3_CTSIE ((uint32_t)0x00000400) /*!< CTS Interrupt Enable */ |
6641 | #define USART_CR3_CTSIE USART_CR3_CTSIE_Msk /*!< CTS Interrupt Enable */ |
3916 | 6642 | ||
3917 | /****************** Bit definition for USART_GTPR register ******************/ |
6643 | /****************** Bit definition for USART_GTPR register ******************/ |
- | 6644 | #define USART_GTPR_PSC_Pos (0U) |
|
- | 6645 | #define USART_GTPR_PSC_Msk (0xFFU << USART_GTPR_PSC_Pos) /*!< 0x000000FF */ |
|
3918 | #define USART_GTPR_PSC ((uint32_t)0x000000FF) /*!< PSC[7:0] bits (Prescaler value) */ |
6646 | #define USART_GTPR_PSC USART_GTPR_PSC_Msk /*!< PSC[7:0] bits (Prescaler value) */ |
3919 | #define USART_GTPR_PSC_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
6647 | #define USART_GTPR_PSC_0 (0x01U << USART_GTPR_PSC_Pos) /*!< 0x00000001 */ |
3920 | #define USART_GTPR_PSC_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
6648 | #define USART_GTPR_PSC_1 (0x02U << USART_GTPR_PSC_Pos) /*!< 0x00000002 */ |
3921 | #define USART_GTPR_PSC_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
6649 | #define USART_GTPR_PSC_2 (0x04U << USART_GTPR_PSC_Pos) /*!< 0x00000004 */ |
3922 | #define USART_GTPR_PSC_3 ((uint32_t)0x00000008) /*!< Bit 3 */ |
6650 | #define USART_GTPR_PSC_3 (0x08U << USART_GTPR_PSC_Pos) /*!< 0x00000008 */ |
3923 | #define USART_GTPR_PSC_4 ((uint32_t)0x00000010) /*!< Bit 4 */ |
6651 | #define USART_GTPR_PSC_4 (0x10U << USART_GTPR_PSC_Pos) /*!< 0x00000010 */ |
3924 | #define USART_GTPR_PSC_5 ((uint32_t)0x00000020) /*!< Bit 5 */ |
6652 | #define USART_GTPR_PSC_5 (0x20U << USART_GTPR_PSC_Pos) /*!< 0x00000020 */ |
3925 | #define USART_GTPR_PSC_6 ((uint32_t)0x00000040) /*!< Bit 6 */ |
6653 | #define USART_GTPR_PSC_6 (0x40U << USART_GTPR_PSC_Pos) /*!< 0x00000040 */ |
3926 | #define USART_GTPR_PSC_7 ((uint32_t)0x00000080) /*!< Bit 7 */ |
6654 | #define USART_GTPR_PSC_7 (0x80U << USART_GTPR_PSC_Pos) /*!< 0x00000080 */ |
3927 | 6655 | ||
- | 6656 | #define USART_GTPR_GT_Pos (8U) |
|
- | 6657 | #define USART_GTPR_GT_Msk (0xFFU << USART_GTPR_GT_Pos) /*!< 0x0000FF00 */ |
|
3928 | #define USART_GTPR_GT ((uint32_t)0x0000FF00) /*!< Guard time value */ |
6658 | #define USART_GTPR_GT USART_GTPR_GT_Msk /*!< Guard time value */ |
3929 | 6659 | ||
3930 | /******************************************************************************/ |
6660 | /******************************************************************************/ |
3931 | /* */ |
6661 | /* */ |
3932 | /* Debug MCU */ |
6662 | /* Debug MCU */ |
3933 | /* */ |
6663 | /* */ |
3934 | /******************************************************************************/ |
6664 | /******************************************************************************/ |
3935 | 6665 | ||
3936 | /**************** Bit definition for DBGMCU_IDCODE register *****************/ |
6666 | /**************** Bit definition for DBGMCU_IDCODE register *****************/ |
- | 6667 | #define DBGMCU_IDCODE_DEV_ID_Pos (0U) |
|
- | 6668 | #define DBGMCU_IDCODE_DEV_ID_Msk (0xFFFU << DBGMCU_IDCODE_DEV_ID_Pos) /*!< 0x00000FFF */ |
|
3937 | #define DBGMCU_IDCODE_DEV_ID ((uint32_t)0x00000FFF) /*!< Device Identifier */ |
6669 | #define DBGMCU_IDCODE_DEV_ID DBGMCU_IDCODE_DEV_ID_Msk /*!< Device Identifier */ |
3938 | 6670 | ||
- | 6671 | #define DBGMCU_IDCODE_REV_ID_Pos (16U) |
|
- | 6672 | #define DBGMCU_IDCODE_REV_ID_Msk (0xFFFFU << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0xFFFF0000 */ |
|
3939 | #define DBGMCU_IDCODE_REV_ID ((uint32_t)0xFFFF0000) /*!< REV_ID[15:0] bits (Revision Identifier) */ |
6673 | #define DBGMCU_IDCODE_REV_ID DBGMCU_IDCODE_REV_ID_Msk /*!< REV_ID[15:0] bits (Revision Identifier) */ |
3940 | #define DBGMCU_IDCODE_REV_ID_0 ((uint32_t)0x00010000) /*!< Bit 0 */ |
6674 | #define DBGMCU_IDCODE_REV_ID_0 (0x0001U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00010000 */ |
3941 | #define DBGMCU_IDCODE_REV_ID_1 ((uint32_t)0x00020000) /*!< Bit 1 */ |
6675 | #define DBGMCU_IDCODE_REV_ID_1 (0x0002U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00020000 */ |
3942 | #define DBGMCU_IDCODE_REV_ID_2 ((uint32_t)0x00040000) /*!< Bit 2 */ |
6676 | #define DBGMCU_IDCODE_REV_ID_2 (0x0004U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00040000 */ |
3943 | #define DBGMCU_IDCODE_REV_ID_3 ((uint32_t)0x00080000) /*!< Bit 3 */ |
6677 | #define DBGMCU_IDCODE_REV_ID_3 (0x0008U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00080000 */ |
3944 | #define DBGMCU_IDCODE_REV_ID_4 ((uint32_t)0x00100000) /*!< Bit 4 */ |
6678 | #define DBGMCU_IDCODE_REV_ID_4 (0x0010U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00100000 */ |
3945 | #define DBGMCU_IDCODE_REV_ID_5 ((uint32_t)0x00200000) /*!< Bit 5 */ |
6679 | #define DBGMCU_IDCODE_REV_ID_5 (0x0020U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00200000 */ |
3946 | #define DBGMCU_IDCODE_REV_ID_6 ((uint32_t)0x00400000) /*!< Bit 6 */ |
6680 | #define DBGMCU_IDCODE_REV_ID_6 (0x0040U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00400000 */ |
3947 | #define DBGMCU_IDCODE_REV_ID_7 ((uint32_t)0x00800000) /*!< Bit 7 */ |
6681 | #define DBGMCU_IDCODE_REV_ID_7 (0x0080U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00800000 */ |
3948 | #define DBGMCU_IDCODE_REV_ID_8 ((uint32_t)0x01000000) /*!< Bit 8 */ |
6682 | #define DBGMCU_IDCODE_REV_ID_8 (0x0100U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x01000000 */ |
3949 | #define DBGMCU_IDCODE_REV_ID_9 ((uint32_t)0x02000000) /*!< Bit 9 */ |
6683 | #define DBGMCU_IDCODE_REV_ID_9 (0x0200U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x02000000 */ |
3950 | #define DBGMCU_IDCODE_REV_ID_10 ((uint32_t)0x04000000) /*!< Bit 10 */ |
6684 | #define DBGMCU_IDCODE_REV_ID_10 (0x0400U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x04000000 */ |
3951 | #define DBGMCU_IDCODE_REV_ID_11 ((uint32_t)0x08000000) /*!< Bit 11 */ |
6685 | #define DBGMCU_IDCODE_REV_ID_11 (0x0800U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x08000000 */ |
3952 | #define DBGMCU_IDCODE_REV_ID_12 ((uint32_t)0x10000000) /*!< Bit 12 */ |
6686 | #define DBGMCU_IDCODE_REV_ID_12 (0x1000U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x10000000 */ |
3953 | #define DBGMCU_IDCODE_REV_ID_13 ((uint32_t)0x20000000) /*!< Bit 13 */ |
6687 | #define DBGMCU_IDCODE_REV_ID_13 (0x2000U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x20000000 */ |
3954 | #define DBGMCU_IDCODE_REV_ID_14 ((uint32_t)0x40000000) /*!< Bit 14 */ |
6688 | #define DBGMCU_IDCODE_REV_ID_14 (0x4000U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x40000000 */ |
3955 | #define DBGMCU_IDCODE_REV_ID_15 ((uint32_t)0x80000000) /*!< Bit 15 */ |
6689 | #define DBGMCU_IDCODE_REV_ID_15 (0x8000U << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x80000000 */ |
3956 | 6690 | ||
3957 | /****************** Bit definition for DBGMCU_CR register *******************/ |
6691 | /****************** Bit definition for DBGMCU_CR register *******************/ |
- | 6692 | #define DBGMCU_CR_DBG_SLEEP_Pos (0U) |
|
- | 6693 | #define DBGMCU_CR_DBG_SLEEP_Msk (0x1U << DBGMCU_CR_DBG_SLEEP_Pos) /*!< 0x00000001 */ |
|
3958 | #define DBGMCU_CR_DBG_SLEEP ((uint32_t)0x00000001) /*!< Debug Sleep Mode */ |
6694 | #define DBGMCU_CR_DBG_SLEEP DBGMCU_CR_DBG_SLEEP_Msk /*!< Debug Sleep Mode */ |
- | 6695 | #define DBGMCU_CR_DBG_STOP_Pos (1U) |
|
- | 6696 | #define DBGMCU_CR_DBG_STOP_Msk (0x1U << DBGMCU_CR_DBG_STOP_Pos) /*!< 0x00000002 */ |
|
3959 | #define DBGMCU_CR_DBG_STOP ((uint32_t)0x00000002) /*!< Debug Stop Mode */ |
6697 | #define DBGMCU_CR_DBG_STOP DBGMCU_CR_DBG_STOP_Msk /*!< Debug Stop Mode */ |
- | 6698 | #define DBGMCU_CR_DBG_STANDBY_Pos (2U) |
|
- | 6699 | #define DBGMCU_CR_DBG_STANDBY_Msk (0x1U << DBGMCU_CR_DBG_STANDBY_Pos) /*!< 0x00000004 */ |
|
3960 | #define DBGMCU_CR_DBG_STANDBY ((uint32_t)0x00000004) /*!< Debug Standby mode */ |
6700 | #define DBGMCU_CR_DBG_STANDBY DBGMCU_CR_DBG_STANDBY_Msk /*!< Debug Standby mode */ |
- | 6701 | #define DBGMCU_CR_TRACE_IOEN_Pos (5U) |
|
- | 6702 | #define DBGMCU_CR_TRACE_IOEN_Msk (0x1U << DBGMCU_CR_TRACE_IOEN_Pos) /*!< 0x00000020 */ |
|
3961 | #define DBGMCU_CR_TRACE_IOEN ((uint32_t)0x00000020) /*!< Trace Pin Assignment Control */ |
6703 | #define DBGMCU_CR_TRACE_IOEN DBGMCU_CR_TRACE_IOEN_Msk /*!< Trace Pin Assignment Control */ |
3962 | 6704 | ||
- | 6705 | #define DBGMCU_CR_TRACE_MODE_Pos (6U) |
|
- | 6706 | #define DBGMCU_CR_TRACE_MODE_Msk (0x3U << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x000000C0 */ |
|
3963 | #define DBGMCU_CR_TRACE_MODE ((uint32_t)0x000000C0) /*!< TRACE_MODE[1:0] bits (Trace Pin Assignment Control) */ |
6707 | #define DBGMCU_CR_TRACE_MODE DBGMCU_CR_TRACE_MODE_Msk /*!< TRACE_MODE[1:0] bits (Trace Pin Assignment Control) */ |
3964 | #define DBGMCU_CR_TRACE_MODE_0 ((uint32_t)0x00000040) /*!< Bit 0 */ |
6708 | #define DBGMCU_CR_TRACE_MODE_0 (0x1U << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000040 */ |
3965 | #define DBGMCU_CR_TRACE_MODE_1 ((uint32_t)0x00000080) /*!< Bit 1 */ |
6709 | #define DBGMCU_CR_TRACE_MODE_1 (0x2U << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000080 */ |
3966 | 6710 | ||
- | 6711 | #define DBGMCU_CR_DBG_IWDG_STOP_Pos (8U) |
|
- | 6712 | #define DBGMCU_CR_DBG_IWDG_STOP_Msk (0x1U << DBGMCU_CR_DBG_IWDG_STOP_Pos) /*!< 0x00000100 */ |
|
3967 | #define DBGMCU_CR_DBG_IWDG_STOP ((uint32_t)0x00000100) /*!< Debug Independent Watchdog stopped when Core is halted */ |
6713 | #define DBGMCU_CR_DBG_IWDG_STOP DBGMCU_CR_DBG_IWDG_STOP_Msk /*!< Debug Independent Watchdog stopped when Core is halted */ |
- | 6714 | #define DBGMCU_CR_DBG_WWDG_STOP_Pos (9U) |
|
- | 6715 | #define DBGMCU_CR_DBG_WWDG_STOP_Msk (0x1U << DBGMCU_CR_DBG_WWDG_STOP_Pos) /*!< 0x00000200 */ |
|
3968 | #define DBGMCU_CR_DBG_WWDG_STOP ((uint32_t)0x00000200) /*!< Debug Window Watchdog stopped when Core is halted */ |
6716 | #define DBGMCU_CR_DBG_WWDG_STOP DBGMCU_CR_DBG_WWDG_STOP_Msk /*!< Debug Window Watchdog stopped when Core is halted */ |
- | 6717 | #define DBGMCU_CR_DBG_TIM1_STOP_Pos (10U) |
|
- | 6718 | #define DBGMCU_CR_DBG_TIM1_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM1_STOP_Pos) /*!< 0x00000400 */ |
|
3969 | #define DBGMCU_CR_DBG_TIM1_STOP ((uint32_t)0x00000400) /*!< TIM1 counter stopped when core is halted */ |
6719 | #define DBGMCU_CR_DBG_TIM1_STOP DBGMCU_CR_DBG_TIM1_STOP_Msk /*!< TIM1 counter stopped when core is halted */ |
- | 6720 | #define DBGMCU_CR_DBG_TIM2_STOP_Pos (11U) |
|
- | 6721 | #define DBGMCU_CR_DBG_TIM2_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM2_STOP_Pos) /*!< 0x00000800 */ |
|
3970 | #define DBGMCU_CR_DBG_TIM2_STOP ((uint32_t)0x00000800) /*!< TIM2 counter stopped when core is halted */ |
6722 | #define DBGMCU_CR_DBG_TIM2_STOP DBGMCU_CR_DBG_TIM2_STOP_Msk /*!< TIM2 counter stopped when core is halted */ |
- | 6723 | #define DBGMCU_CR_DBG_TIM3_STOP_Pos (12U) |
|
- | 6724 | #define DBGMCU_CR_DBG_TIM3_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM3_STOP_Pos) /*!< 0x00001000 */ |
|
3971 | #define DBGMCU_CR_DBG_TIM3_STOP ((uint32_t)0x00001000) /*!< TIM3 counter stopped when core is halted */ |
6725 | #define DBGMCU_CR_DBG_TIM3_STOP DBGMCU_CR_DBG_TIM3_STOP_Msk /*!< TIM3 counter stopped when core is halted */ |
- | 6726 | #define DBGMCU_CR_DBG_TIM4_STOP_Pos (13U) |
|
- | 6727 | #define DBGMCU_CR_DBG_TIM4_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM4_STOP_Pos) /*!< 0x00002000 */ |
|
3972 | #define DBGMCU_CR_DBG_TIM4_STOP ((uint32_t)0x00002000) /*!< TIM4 counter stopped when core is halted */ |
6728 | #define DBGMCU_CR_DBG_TIM4_STOP DBGMCU_CR_DBG_TIM4_STOP_Msk /*!< TIM4 counter stopped when core is halted */ |
- | 6729 | #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Pos (15U) |
|
- | 6730 | #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Msk (0x1U << DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Pos) /*!< 0x00008000 */ |
|
3973 | #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT ((uint32_t)0x00008000) /*!< SMBUS timeout mode stopped when Core is halted */ |
6731 | #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */ |
- | 6732 | #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Pos (16U) |
|
- | 6733 | #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Msk (0x1U << DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Pos) /*!< 0x00010000 */ |
|
3974 | #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT ((uint32_t)0x00010000) /*!< SMBUS timeout mode stopped when Core is halted */ |
6734 | #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */ |
- | 6735 | #define DBGMCU_CR_DBG_TIM5_STOP_Pos (18U) |
|
- | 6736 | #define DBGMCU_CR_DBG_TIM5_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM5_STOP_Pos) /*!< 0x00040000 */ |
|
3975 | #define DBGMCU_CR_DBG_TIM5_STOP ((uint32_t)0x00040000) /*!< TIM5 counter stopped when core is halted */ |
6737 | #define DBGMCU_CR_DBG_TIM5_STOP DBGMCU_CR_DBG_TIM5_STOP_Msk /*!< TIM5 counter stopped when core is halted */ |
- | 6738 | #define DBGMCU_CR_DBG_TIM6_STOP_Pos (19U) |
|
- | 6739 | #define DBGMCU_CR_DBG_TIM6_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM6_STOP_Pos) /*!< 0x00080000 */ |
|
3976 | #define DBGMCU_CR_DBG_TIM6_STOP ((uint32_t)0x00080000) /*!< TIM6 counter stopped when core is halted */ |
6740 | #define DBGMCU_CR_DBG_TIM6_STOP DBGMCU_CR_DBG_TIM6_STOP_Msk /*!< TIM6 counter stopped when core is halted */ |
- | 6741 | #define DBGMCU_CR_DBG_TIM7_STOP_Pos (20U) |
|
- | 6742 | #define DBGMCU_CR_DBG_TIM7_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM7_STOP_Pos) /*!< 0x00100000 */ |
|
3977 | #define DBGMCU_CR_DBG_TIM7_STOP ((uint32_t)0x00100000) /*!< TIM7 counter stopped when core is halted */ |
6743 | #define DBGMCU_CR_DBG_TIM7_STOP DBGMCU_CR_DBG_TIM7_STOP_Msk /*!< TIM7 counter stopped when core is halted */ |
- | 6744 | #define DBGMCU_CR_DBG_TIM9_STOP_Pos (28U) |
|
- | 6745 | #define DBGMCU_CR_DBG_TIM9_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM9_STOP_Pos) /*!< 0x10000000 */ |
|
3978 | #define DBGMCU_CR_DBG_TIM9_STOP ((uint32_t)0x10000000) /*!< Debug TIM9 stopped when Core is halted */ |
6746 | #define DBGMCU_CR_DBG_TIM9_STOP DBGMCU_CR_DBG_TIM9_STOP_Msk /*!< Debug TIM9 stopped when Core is halted */ |
- | 6747 | #define DBGMCU_CR_DBG_TIM10_STOP_Pos (29U) |
|
- | 6748 | #define DBGMCU_CR_DBG_TIM10_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM10_STOP_Pos) /*!< 0x20000000 */ |
|
3979 | #define DBGMCU_CR_DBG_TIM10_STOP ((uint32_t)0x20000000) /*!< Debug TIM10 stopped when Core is halted */ |
6749 | #define DBGMCU_CR_DBG_TIM10_STOP DBGMCU_CR_DBG_TIM10_STOP_Msk /*!< Debug TIM10 stopped when Core is halted */ |
- | 6750 | #define DBGMCU_CR_DBG_TIM11_STOP_Pos (30U) |
|
- | 6751 | #define DBGMCU_CR_DBG_TIM11_STOP_Msk (0x1U << DBGMCU_CR_DBG_TIM11_STOP_Pos) /*!< 0x40000000 */ |
|
3980 | #define DBGMCU_CR_DBG_TIM11_STOP ((uint32_t)0x40000000) /*!< Debug TIM11 stopped when Core is halted */ |
6752 | #define DBGMCU_CR_DBG_TIM11_STOP DBGMCU_CR_DBG_TIM11_STOP_Msk /*!< Debug TIM11 stopped when Core is halted */ |
3981 | 6753 | ||
3982 | /******************************************************************************/ |
6754 | /******************************************************************************/ |
3983 | /* */ |
6755 | /* */ |
3984 | /* FLASH and Option Bytes Registers */ |
6756 | /* FLASH and Option Bytes Registers */ |
3985 | /* */ |
6757 | /* */ |
3986 | /******************************************************************************/ |
6758 | /******************************************************************************/ |
3987 | /******************* Bit definition for FLASH_ACR register ******************/ |
6759 | /******************* Bit definition for FLASH_ACR register ******************/ |
- | 6760 | #define FLASH_ACR_LATENCY_Pos (0U) |
|
- | 6761 | #define FLASH_ACR_LATENCY_Msk (0x7U << FLASH_ACR_LATENCY_Pos) /*!< 0x00000007 */ |
|
3988 | #define FLASH_ACR_LATENCY ((uint32_t)0x00000007) /*!< LATENCY[2:0] bits (Latency) */ |
6762 | #define FLASH_ACR_LATENCY FLASH_ACR_LATENCY_Msk /*!< LATENCY[2:0] bits (Latency) */ |
3989 | #define FLASH_ACR_LATENCY_0 ((uint32_t)0x00000001) /*!< Bit 0 */ |
6763 | #define FLASH_ACR_LATENCY_0 (0x1U << FLASH_ACR_LATENCY_Pos) /*!< 0x00000001 */ |
3990 | #define FLASH_ACR_LATENCY_1 ((uint32_t)0x00000002) /*!< Bit 1 */ |
6764 | #define FLASH_ACR_LATENCY_1 (0x2U << FLASH_ACR_LATENCY_Pos) /*!< 0x00000002 */ |
3991 | #define FLASH_ACR_LATENCY_2 ((uint32_t)0x00000004) /*!< Bit 2 */ |
6765 | #define FLASH_ACR_LATENCY_2 (0x4U << FLASH_ACR_LATENCY_Pos) /*!< 0x00000004 */ |
3992 | 6766 | ||
- | 6767 | #define FLASH_ACR_HLFCYA_Pos (3U) |
|
- | 6768 | #define FLASH_ACR_HLFCYA_Msk (0x1U << FLASH_ACR_HLFCYA_Pos) /*!< 0x00000008 */ |
|
3993 | #define FLASH_ACR_HLFCYA ((uint32_t)0x00000008) /*!< Flash Half Cycle Access Enable */ |
6769 | #define FLASH_ACR_HLFCYA FLASH_ACR_HLFCYA_Msk /*!< Flash Half Cycle Access Enable */ |
- | 6770 | #define FLASH_ACR_PRFTBE_Pos (4U) |
|
- | 6771 | #define FLASH_ACR_PRFTBE_Msk (0x1U << FLASH_ACR_PRFTBE_Pos) /*!< 0x00000010 */ |
|
3994 | #define FLASH_ACR_PRFTBE ((uint32_t)0x00000010) /*!< Prefetch Buffer Enable */ |
6772 | #define FLASH_ACR_PRFTBE FLASH_ACR_PRFTBE_Msk /*!< Prefetch Buffer Enable */ |
- | 6773 | #define FLASH_ACR_PRFTBS_Pos (5U) |
|
- | 6774 | #define FLASH_ACR_PRFTBS_Msk (0x1U << FLASH_ACR_PRFTBS_Pos) /*!< 0x00000020 */ |
|
3995 | #define FLASH_ACR_PRFTBS ((uint32_t)0x00000020) /*!< Prefetch Buffer Status */ |
6775 | #define FLASH_ACR_PRFTBS FLASH_ACR_PRFTBS_Msk /*!< Prefetch Buffer Status */ |
3996 | 6776 | ||
3997 | /****************** Bit definition for FLASH_KEYR register ******************/ |
6777 | /****************** Bit definition for FLASH_KEYR register ******************/ |
- | 6778 | #define FLASH_KEYR_FKEYR_Pos (0U) |
|
- | 6779 | #define FLASH_KEYR_FKEYR_Msk (0xFFFFFFFFU << FLASH_KEYR_FKEYR_Pos) /*!< 0xFFFFFFFF */ |
|
3998 | #define FLASH_KEYR_FKEYR ((uint32_t)0xFFFFFFFF) /*!< FPEC Key */ |
6780 | #define FLASH_KEYR_FKEYR FLASH_KEYR_FKEYR_Msk /*!< FPEC Key */ |
3999 | 6781 | ||
- | 6782 | #define RDP_KEY_Pos (0U) |
|
- | 6783 | #define RDP_KEY_Msk (0xA5U << RDP_KEY_Pos) /*!< 0x000000A5 */ |
|
4000 | #define RDP_KEY ((uint32_t)0x000000A5) /*!< RDP Key */ |
6784 | #define RDP_KEY RDP_KEY_Msk /*!< RDP Key */ |
- | 6785 | #define FLASH_KEY1_Pos (0U) |
|
- | 6786 | #define FLASH_KEY1_Msk (0x45670123U << FLASH_KEY1_Pos) /*!< 0x45670123 */ |
|
4001 | #define FLASH_KEY1 ((uint32_t)0x45670123) /*!< FPEC Key1 */ |
6787 | #define FLASH_KEY1 FLASH_KEY1_Msk /*!< FPEC Key1 */ |
- | 6788 | #define FLASH_KEY2_Pos (0U) |
|
- | 6789 | #define FLASH_KEY2_Msk (0xCDEF89ABU << FLASH_KEY2_Pos) /*!< 0xCDEF89AB */ |
|
4002 | #define FLASH_KEY2 ((uint32_t)0xCDEF89AB) /*!< FPEC Key2 */ |
6790 | #define FLASH_KEY2 FLASH_KEY2_Msk /*!< FPEC Key2 */ |
4003 | 6791 | ||
4004 | /***************** Bit definition for FLASH_OPTKEYR register ****************/ |
6792 | /***************** Bit definition for FLASH_OPTKEYR register ****************/ |
- | 6793 | #define FLASH_OPTKEYR_OPTKEYR_Pos (0U) |
|
- | 6794 | #define FLASH_OPTKEYR_OPTKEYR_Msk (0xFFFFFFFFU << FLASH_OPTKEYR_OPTKEYR_Pos) /*!< 0xFFFFFFFF */ |
|
4005 | #define FLASH_OPTKEYR_OPTKEYR ((uint32_t)0xFFFFFFFF) /*!< Option Byte Key */ |
6795 | #define FLASH_OPTKEYR_OPTKEYR FLASH_OPTKEYR_OPTKEYR_Msk /*!< Option Byte Key */ |
4006 | 6796 | ||
4007 | #define FLASH_OPTKEY1 FLASH_KEY1 /*!< Option Byte Key1 */ |
6797 | #define FLASH_OPTKEY1 FLASH_KEY1 /*!< Option Byte Key1 */ |
4008 | #define FLASH_OPTKEY2 FLASH_KEY2 /*!< Option Byte Key2 */ |
6798 | #define FLASH_OPTKEY2 FLASH_KEY2 /*!< Option Byte Key2 */ |
4009 | 6799 | ||
4010 | /****************** Bit definition for FLASH_SR register ********************/ |
6800 | /****************** Bit definition for FLASH_SR register ********************/ |
- | 6801 | #define FLASH_SR_BSY_Pos (0U) |
|
- | 6802 | #define FLASH_SR_BSY_Msk (0x1U << FLASH_SR_BSY_Pos) /*!< 0x00000001 */ |
|
4011 | #define FLASH_SR_BSY ((uint32_t)0x00000001) /*!< Busy */ |
6803 | #define FLASH_SR_BSY FLASH_SR_BSY_Msk /*!< Busy */ |
- | 6804 | #define FLASH_SR_PGERR_Pos (2U) |
|
- | 6805 | #define FLASH_SR_PGERR_Msk (0x1U << FLASH_SR_PGERR_Pos) /*!< 0x00000004 */ |
|
4012 | #define FLASH_SR_PGERR ((uint32_t)0x00000004) /*!< Programming Error */ |
6806 | #define FLASH_SR_PGERR FLASH_SR_PGERR_Msk /*!< Programming Error */ |
- | 6807 | #define FLASH_SR_WRPRTERR_Pos (4U) |
|
- | 6808 | #define FLASH_SR_WRPRTERR_Msk (0x1U << FLASH_SR_WRPRTERR_Pos) /*!< 0x00000010 */ |
|
4013 | #define FLASH_SR_WRPRTERR ((uint32_t)0x00000010) /*!< Write Protection Error */ |
6809 | #define FLASH_SR_WRPRTERR FLASH_SR_WRPRTERR_Msk /*!< Write Protection Error */ |
- | 6810 | #define FLASH_SR_EOP_Pos (5U) |
|
- | 6811 | #define FLASH_SR_EOP_Msk (0x1U << FLASH_SR_EOP_Pos) /*!< 0x00000020 */ |
|
4014 | #define FLASH_SR_EOP ((uint32_t)0x00000020) /*!< End of operation */ |
6812 | #define FLASH_SR_EOP FLASH_SR_EOP_Msk /*!< End of operation */ |
4015 | 6813 | ||
4016 | /******************* Bit definition for FLASH_CR register *******************/ |
6814 | /******************* Bit definition for FLASH_CR register *******************/ |
- | 6815 | #define FLASH_CR_PG_Pos (0U) |
|
- | 6816 | #define FLASH_CR_PG_Msk (0x1U << FLASH_CR_PG_Pos) /*!< 0x00000001 */ |
|
4017 | #define FLASH_CR_PG ((uint32_t)0x00000001) /*!< Programming */ |
6817 | #define FLASH_CR_PG FLASH_CR_PG_Msk /*!< Programming */ |
- | 6818 | #define FLASH_CR_PER_Pos (1U) |
|
- | 6819 | #define FLASH_CR_PER_Msk (0x1U << FLASH_CR_PER_Pos) /*!< 0x00000002 */ |
|
4018 | #define FLASH_CR_PER ((uint32_t)0x00000002) /*!< Page Erase */ |
6820 | #define FLASH_CR_PER FLASH_CR_PER_Msk /*!< Page Erase */ |
- | 6821 | #define FLASH_CR_MER_Pos (2U) |
|
- | 6822 | #define FLASH_CR_MER_Msk (0x1U << FLASH_CR_MER_Pos) /*!< 0x00000004 */ |
|
4019 | #define FLASH_CR_MER ((uint32_t)0x00000004) /*!< Mass Erase */ |
6823 | #define FLASH_CR_MER FLASH_CR_MER_Msk /*!< Mass Erase */ |
- | 6824 | #define FLASH_CR_OPTPG_Pos (4U) |
|
- | 6825 | #define FLASH_CR_OPTPG_Msk (0x1U << FLASH_CR_OPTPG_Pos) /*!< 0x00000010 */ |
|
4020 | #define FLASH_CR_OPTPG ((uint32_t)0x00000010) /*!< Option Byte Programming */ |
6826 | #define FLASH_CR_OPTPG FLASH_CR_OPTPG_Msk /*!< Option Byte Programming */ |
- | 6827 | #define FLASH_CR_OPTER_Pos (5U) |
|
- | 6828 | #define FLASH_CR_OPTER_Msk (0x1U << FLASH_CR_OPTER_Pos) /*!< 0x00000020 */ |
|
4021 | #define FLASH_CR_OPTER ((uint32_t)0x00000020) /*!< Option Byte Erase */ |
6829 | #define FLASH_CR_OPTER FLASH_CR_OPTER_Msk /*!< Option Byte Erase */ |
- | 6830 | #define FLASH_CR_STRT_Pos (6U) |
|
- | 6831 | #define FLASH_CR_STRT_Msk (0x1U << FLASH_CR_STRT_Pos) /*!< 0x00000040 */ |
|
4022 | #define FLASH_CR_STRT ((uint32_t)0x00000040) /*!< Start */ |
6832 | #define FLASH_CR_STRT FLASH_CR_STRT_Msk /*!< Start */ |
- | 6833 | #define FLASH_CR_LOCK_Pos (7U) |
|
- | 6834 | #define FLASH_CR_LOCK_Msk (0x1U << FLASH_CR_LOCK_Pos) /*!< 0x00000080 */ |
|
4023 | #define FLASH_CR_LOCK ((uint32_t)0x00000080) /*!< Lock */ |
6835 | #define FLASH_CR_LOCK FLASH_CR_LOCK_Msk /*!< Lock */ |
- | 6836 | #define FLASH_CR_OPTWRE_Pos (9U) |
|
- | 6837 | #define FLASH_CR_OPTWRE_Msk (0x1U << FLASH_CR_OPTWRE_Pos) /*!< 0x00000200 */ |
|
4024 | #define FLASH_CR_OPTWRE ((uint32_t)0x00000200) /*!< Option Bytes Write Enable */ |
6838 | #define FLASH_CR_OPTWRE FLASH_CR_OPTWRE_Msk /*!< Option Bytes Write Enable */ |
- | 6839 | #define FLASH_CR_ERRIE_Pos (10U) |
|
- | 6840 | #define FLASH_CR_ERRIE_Msk (0x1U << FLASH_CR_ERRIE_Pos) /*!< 0x00000400 */ |
|
4025 | #define FLASH_CR_ERRIE ((uint32_t)0x00000400) /*!< Error Interrupt Enable */ |
6841 | #define FLASH_CR_ERRIE FLASH_CR_ERRIE_Msk /*!< Error Interrupt Enable */ |
- | 6842 | #define FLASH_CR_EOPIE_Pos (12U) |
|
- | 6843 | #define FLASH_CR_EOPIE_Msk (0x1U << FLASH_CR_EOPIE_Pos) /*!< 0x00001000 */ |
|
4026 | #define FLASH_CR_EOPIE ((uint32_t)0x00001000) /*!< End of operation interrupt enable */ |
6844 | #define FLASH_CR_EOPIE FLASH_CR_EOPIE_Msk /*!< End of operation interrupt enable */ |
4027 | 6845 | ||
4028 | /******************* Bit definition for FLASH_AR register *******************/ |
6846 | /******************* Bit definition for FLASH_AR register *******************/ |
- | 6847 | #define FLASH_AR_FAR_Pos (0U) |
|
- | 6848 | #define FLASH_AR_FAR_Msk (0xFFFFFFFFU << FLASH_AR_FAR_Pos) /*!< 0xFFFFFFFF */ |
|
4029 | #define FLASH_AR_FAR ((uint32_t)0xFFFFFFFF) /*!< Flash Address */ |
6849 | #define FLASH_AR_FAR FLASH_AR_FAR_Msk /*!< Flash Address */ |
4030 | 6850 | ||
4031 | /****************** Bit definition for FLASH_OBR register *******************/ |
6851 | /****************** Bit definition for FLASH_OBR register *******************/ |
- | 6852 | #define FLASH_OBR_OPTERR_Pos (0U) |
|
- | 6853 | #define FLASH_OBR_OPTERR_Msk (0x1U << FLASH_OBR_OPTERR_Pos) /*!< 0x00000001 */ |
|
4032 | #define FLASH_OBR_OPTERR ((uint32_t)0x00000001) /*!< Option Byte Error */ |
6854 | #define FLASH_OBR_OPTERR FLASH_OBR_OPTERR_Msk /*!< Option Byte Error */ |
- | 6855 | #define FLASH_OBR_RDPRT_Pos (1U) |
|
- | 6856 | #define FLASH_OBR_RDPRT_Msk (0x1U << FLASH_OBR_RDPRT_Pos) /*!< 0x00000002 */ |
|
4033 | #define FLASH_OBR_RDPRT ((uint32_t)0x00000002) /*!< Read protection */ |
6857 | #define FLASH_OBR_RDPRT FLASH_OBR_RDPRT_Msk /*!< Read protection */ |
4034 | 6858 | ||
- | 6859 | #define FLASH_OBR_IWDG_SW_Pos (2U) |
|
- | 6860 | #define FLASH_OBR_IWDG_SW_Msk (0x1U << FLASH_OBR_IWDG_SW_Pos) /*!< 0x00000004 */ |
|
4035 | #define FLASH_OBR_IWDG_SW ((uint32_t)0x00000004) /*!< IWDG SW */ |
6861 | #define FLASH_OBR_IWDG_SW FLASH_OBR_IWDG_SW_Msk /*!< IWDG SW */ |
- | 6862 | #define FLASH_OBR_nRST_STOP_Pos (3U) |
|
- | 6863 | #define FLASH_OBR_nRST_STOP_Msk (0x1U << FLASH_OBR_nRST_STOP_Pos) /*!< 0x00000008 */ |
|
4036 | #define FLASH_OBR_nRST_STOP ((uint32_t)0x00000008) /*!< nRST_STOP */ |
6864 | #define FLASH_OBR_nRST_STOP FLASH_OBR_nRST_STOP_Msk /*!< nRST_STOP */ |
- | 6865 | #define FLASH_OBR_nRST_STDBY_Pos (4U) |
|
- | 6866 | #define FLASH_OBR_nRST_STDBY_Msk (0x1U << FLASH_OBR_nRST_STDBY_Pos) /*!< 0x00000010 */ |
|
4037 | #define FLASH_OBR_nRST_STDBY ((uint32_t)0x00000010) /*!< nRST_STDBY */ |
6867 | #define FLASH_OBR_nRST_STDBY FLASH_OBR_nRST_STDBY_Msk /*!< nRST_STDBY */ |
- | 6868 | #define FLASH_OBR_USER_Pos (2U) |
|
- | 6869 | #define FLASH_OBR_USER_Msk (0x7U << FLASH_OBR_USER_Pos) /*!< 0x0000001C */ |
|
4038 | #define FLASH_OBR_USER ((uint32_t)0x0000001C) /*!< User Option Bytes */ |
6870 | #define FLASH_OBR_USER FLASH_OBR_USER_Msk /*!< User Option Bytes */ |
- | 6871 | #define FLASH_OBR_DATA0_Pos (10U) |
|
- | 6872 | #define FLASH_OBR_DATA0_Msk (0xFFU << FLASH_OBR_DATA0_Pos) /*!< 0x0003FC00 */ |
|
- | 6873 | #define FLASH_OBR_DATA0 FLASH_OBR_DATA0_Msk /*!< Data0 */ |
|
- | 6874 | #define FLASH_OBR_DATA1_Pos (18U) |
|
- | 6875 | #define FLASH_OBR_DATA1_Msk (0xFFU << FLASH_OBR_DATA1_Pos) /*!< 0x03FC0000 */ |
|
- | 6876 | #define FLASH_OBR_DATA1 FLASH_OBR_DATA1_Msk /*!< Data1 */ |
|
4039 | 6877 | ||
4040 | /****************** Bit definition for FLASH_WRPR register ******************/ |
6878 | /****************** Bit definition for FLASH_WRPR register ******************/ |
- | 6879 | #define FLASH_WRPR_WRP_Pos (0U) |
|
- | 6880 | #define FLASH_WRPR_WRP_Msk (0xFFFFFFFFU << FLASH_WRPR_WRP_Pos) /*!< 0xFFFFFFFF */ |
|
4041 | #define FLASH_WRPR_WRP ((uint32_t)0xFFFFFFFF) /*!< Write Protect */ |
6881 | #define FLASH_WRPR_WRP FLASH_WRPR_WRP_Msk /*!< Write Protect */ |
4042 | 6882 | ||
4043 | /*----------------------------------------------------------------------------*/ |
6883 | /*----------------------------------------------------------------------------*/ |
4044 | 6884 | ||
4045 | /****************** Bit definition for FLASH_RDP register *******************/ |
6885 | /****************** Bit definition for FLASH_RDP register *******************/ |
- | 6886 | #define FLASH_RDP_RDP_Pos (0U) |
|
- | 6887 | #define FLASH_RDP_RDP_Msk (0xFFU << FLASH_RDP_RDP_Pos) /*!< 0x000000FF */ |
|
4046 | #define FLASH_RDP_RDP ((uint32_t)0x000000FF) /*!< Read protection option byte */ |
6888 | #define FLASH_RDP_RDP FLASH_RDP_RDP_Msk /*!< Read protection option byte */ |
- | 6889 | #define FLASH_RDP_nRDP_Pos (8U) |
|
- | 6890 | #define FLASH_RDP_nRDP_Msk (0xFFU << FLASH_RDP_nRDP_Pos) /*!< 0x0000FF00 */ |
|
4047 | #define FLASH_RDP_nRDP ((uint32_t)0x0000FF00) /*!< Read protection complemented option byte */ |
6891 | #define FLASH_RDP_nRDP FLASH_RDP_nRDP_Msk /*!< Read protection complemented option byte */ |
4048 | 6892 | ||
4049 | /****************** Bit definition for FLASH_USER register ******************/ |
6893 | /****************** Bit definition for FLASH_USER register ******************/ |
- | 6894 | #define FLASH_USER_USER_Pos (16U) |
|
- | 6895 | #define FLASH_USER_USER_Msk (0xFFU << FLASH_USER_USER_Pos) /*!< 0x00FF0000 */ |
|
4050 | #define FLASH_USER_USER ((uint32_t)0x00FF0000) /*!< User option byte */ |
6896 | #define FLASH_USER_USER FLASH_USER_USER_Msk /*!< User option byte */ |
- | 6897 | #define FLASH_USER_nUSER_Pos (24U) |
|
- | 6898 | #define FLASH_USER_nUSER_Msk (0xFFU << FLASH_USER_nUSER_Pos) /*!< 0xFF000000 */ |
|
4051 | #define FLASH_USER_nUSER ((uint32_t)0xFF000000) /*!< User complemented option byte */ |
6899 | #define FLASH_USER_nUSER FLASH_USER_nUSER_Msk /*!< User complemented option byte */ |
4052 | 6900 | ||
4053 | /****************** Bit definition for FLASH_Data0 register *****************/ |
6901 | /****************** Bit definition for FLASH_Data0 register *****************/ |
- | 6902 | #define FLASH_DATA0_DATA0_Pos (0U) |
|
- | 6903 | #define FLASH_DATA0_DATA0_Msk (0xFFU << FLASH_DATA0_DATA0_Pos) /*!< 0x000000FF */ |
|
4054 | #define FLASH_DATA0_DATA0 ((uint32_t)0x000000FF) /*!< User data storage option byte */ |
6904 | #define FLASH_DATA0_DATA0 FLASH_DATA0_DATA0_Msk /*!< User data storage option byte */ |
- | 6905 | #define FLASH_DATA0_nDATA0_Pos (8U) |
|
- | 6906 | #define FLASH_DATA0_nDATA0_Msk (0xFFU << FLASH_DATA0_nDATA0_Pos) /*!< 0x0000FF00 */ |
|
4055 | #define FLASH_DATA0_nDATA0 ((uint32_t)0x0000FF00) /*!< User data storage complemented option byte */ |
6907 | #define FLASH_DATA0_nDATA0 FLASH_DATA0_nDATA0_Msk /*!< User data storage complemented option byte */ |
4056 | 6908 | ||
4057 | /****************** Bit definition for FLASH_Data1 register *****************/ |
6909 | /****************** Bit definition for FLASH_Data1 register *****************/ |
- | 6910 | #define FLASH_DATA1_DATA1_Pos (16U) |
|
- | 6911 | #define FLASH_DATA1_DATA1_Msk (0xFFU << FLASH_DATA1_DATA1_Pos) /*!< 0x00FF0000 */ |
|
4058 | #define FLASH_DATA1_DATA1 ((uint32_t)0x00FF0000) /*!< User data storage option byte */ |
6912 | #define FLASH_DATA1_DATA1 FLASH_DATA1_DATA1_Msk /*!< User data storage option byte */ |
- | 6913 | #define FLASH_DATA1_nDATA1_Pos (24U) |
|
- | 6914 | #define FLASH_DATA1_nDATA1_Msk (0xFFU << FLASH_DATA1_nDATA1_Pos) /*!< 0xFF000000 */ |
|
4059 | #define FLASH_DATA1_nDATA1 ((uint32_t)0xFF000000) /*!< User data storage complemented option byte */ |
6915 | #define FLASH_DATA1_nDATA1 FLASH_DATA1_nDATA1_Msk /*!< User data storage complemented option byte */ |
4060 | 6916 | ||
4061 | /****************** Bit definition for FLASH_WRP0 register ******************/ |
6917 | /****************** Bit definition for FLASH_WRP0 register ******************/ |
- | 6918 | #define FLASH_WRP0_WRP0_Pos (0U) |
|
- | 6919 | #define FLASH_WRP0_WRP0_Msk (0xFFU << FLASH_WRP0_WRP0_Pos) /*!< 0x000000FF */ |
|
4062 | #define FLASH_WRP0_WRP0 ((uint32_t)0x000000FF) /*!< Flash memory write protection option bytes */ |
6920 | #define FLASH_WRP0_WRP0 FLASH_WRP0_WRP0_Msk /*!< Flash memory write protection option bytes */ |
- | 6921 | #define FLASH_WRP0_nWRP0_Pos (8U) |
|
- | 6922 | #define FLASH_WRP0_nWRP0_Msk (0xFFU << FLASH_WRP0_nWRP0_Pos) /*!< 0x0000FF00 */ |
|
4063 | #define FLASH_WRP0_nWRP0 ((uint32_t)0x0000FF00) /*!< Flash memory write protection complemented option bytes */ |
6923 | #define FLASH_WRP0_nWRP0 FLASH_WRP0_nWRP0_Msk /*!< Flash memory write protection complemented option bytes */ |
4064 | 6924 | ||
4065 | /****************** Bit definition for FLASH_WRP1 register ******************/ |
6925 | /****************** Bit definition for FLASH_WRP1 register ******************/ |
- | 6926 | #define FLASH_WRP1_WRP1_Pos (16U) |
|
- | 6927 | #define FLASH_WRP1_WRP1_Msk (0xFFU << FLASH_WRP1_WRP1_Pos) /*!< 0x00FF0000 */ |
|
4066 | #define FLASH_WRP1_WRP1 ((uint32_t)0x00FF0000) /*!< Flash memory write protection option bytes */ |
6928 | #define FLASH_WRP1_WRP1 FLASH_WRP1_WRP1_Msk /*!< Flash memory write protection option bytes */ |
- | 6929 | #define FLASH_WRP1_nWRP1_Pos (24U) |
|
- | 6930 | #define FLASH_WRP1_nWRP1_Msk (0xFFU << FLASH_WRP1_nWRP1_Pos) /*!< 0xFF000000 */ |
|
4067 | #define FLASH_WRP1_nWRP1 ((uint32_t)0xFF000000) /*!< Flash memory write protection complemented option bytes */ |
6931 | #define FLASH_WRP1_nWRP1 FLASH_WRP1_nWRP1_Msk /*!< Flash memory write protection complemented option bytes */ |
4068 | 6932 | ||
4069 | /****************** Bit definition for FLASH_WRP2 register ******************/ |
6933 | /****************** Bit definition for FLASH_WRP2 register ******************/ |
- | 6934 | #define FLASH_WRP2_WRP2_Pos (0U) |
|
- | 6935 | #define FLASH_WRP2_WRP2_Msk (0xFFU << FLASH_WRP2_WRP2_Pos) /*!< 0x000000FF */ |
|
4070 | #define FLASH_WRP2_WRP2 ((uint32_t)0x000000FF) /*!< Flash memory write protection option bytes */ |
6936 | #define FLASH_WRP2_WRP2 FLASH_WRP2_WRP2_Msk /*!< Flash memory write protection option bytes */ |
- | 6937 | #define FLASH_WRP2_nWRP2_Pos (8U) |
|
- | 6938 | #define FLASH_WRP2_nWRP2_Msk (0xFFU << FLASH_WRP2_nWRP2_Pos) /*!< 0x0000FF00 */ |
|
4071 | #define FLASH_WRP2_nWRP2 ((uint32_t)0x0000FF00) /*!< Flash memory write protection complemented option bytes */ |
6939 | #define FLASH_WRP2_nWRP2 FLASH_WRP2_nWRP2_Msk /*!< Flash memory write protection complemented option bytes */ |
4072 | 6940 | ||
4073 | /****************** Bit definition for FLASH_WRP3 register ******************/ |
6941 | /****************** Bit definition for FLASH_WRP3 register ******************/ |
- | 6942 | #define FLASH_WRP3_WRP3_Pos (16U) |
|
- | 6943 | #define FLASH_WRP3_WRP3_Msk (0xFFU << FLASH_WRP3_WRP3_Pos) /*!< 0x00FF0000 */ |
|
4074 | #define FLASH_WRP3_WRP3 ((uint32_t)0x00FF0000) /*!< Flash memory write protection option bytes */ |
6944 | #define FLASH_WRP3_WRP3 FLASH_WRP3_WRP3_Msk /*!< Flash memory write protection option bytes */ |
- | 6945 | #define FLASH_WRP3_nWRP3_Pos (24U) |
|
- | 6946 | #define FLASH_WRP3_nWRP3_Msk (0xFFU << FLASH_WRP3_nWRP3_Pos) /*!< 0xFF000000 */ |
|
4075 | #define FLASH_WRP3_nWRP3 ((uint32_t)0xFF000000) /*!< Flash memory write protection complemented option bytes */ |
6947 | #define FLASH_WRP3_nWRP3 FLASH_WRP3_nWRP3_Msk /*!< Flash memory write protection complemented option bytes */ |
4076 | 6948 | ||
4077 | 6949 | ||
4078 | 6950 | ||
4079 | /** |
6951 | /** |
4080 | * @} |
6952 | * @} |
Line 4089... | Line 6961... | ||
4089 | */ |
6961 | */ |
4090 | 6962 | ||
4091 | /****************************** ADC Instances *********************************/ |
6963 | /****************************** ADC Instances *********************************/ |
4092 | #define IS_ADC_ALL_INSTANCE(INSTANCE) (((INSTANCE) == ADC1)) |
6964 | #define IS_ADC_ALL_INSTANCE(INSTANCE) (((INSTANCE) == ADC1)) |
4093 | 6965 | ||
- | 6966 | #define IS_ADC_COMMON_INSTANCE(INSTANCE) ((INSTANCE) == ADC1_COMMON) |
|
- | 6967 | ||
4094 | #define IS_ADC_DMA_CAPABILITY_INSTANCE(INSTANCE) ((INSTANCE) == ADC1) |
6968 | #define IS_ADC_DMA_CAPABILITY_INSTANCE(INSTANCE) ((INSTANCE) == ADC1) |
4095 | 6969 | ||
4096 | /****************************** CRC Instances *********************************/ |
6970 | /****************************** CRC Instances *********************************/ |
4097 | #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC) |
6971 | #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC) |
4098 | 6972 |