From d510c2a9614a177d7e2e99e1abe31457ec944012 Mon Sep 17 00:00:00 2001 From: Chris Mason Date: Sat, 29 Dec 2018 16:04:07 +1100 Subject: [PATCH] CMSIS/F4: Add RCC_CSR_BORRSTF for STM32F413. RCC_CSR_BORRSTF is defined in the STM32F413 Reference Manual but missing from this header file, so add it in. --- CMSIS/STM32F4xx/Include/stm32f413xx.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMSIS/STM32F4xx/Include/stm32f413xx.h b/CMSIS/STM32F4xx/Include/stm32f413xx.h index 8af3ae5..53db23b 100644 --- a/CMSIS/STM32F4xx/Include/stm32f413xx.h +++ b/CMSIS/STM32F4xx/Include/stm32f413xx.h @@ -10067,6 +10067,9 @@ typedef struct #define RCC_CSR_RMVF_Pos (24U) #define RCC_CSR_RMVF_Msk (0x1U << RCC_CSR_RMVF_Pos) /*!< 0x01000000 */ #define RCC_CSR_RMVF RCC_CSR_RMVF_Msk +#define RCC_CSR_BORRSTF_Pos (25U) +#define RCC_CSR_BORRSTF_Msk (0x1U << RCC_CSR_BORRSTF_Pos) /*!< 0x02000000 */ +#define RCC_CSR_BORRSTF RCC_CSR_BORRSTF_Msk #define RCC_CSR_PINRSTF_Pos (26U) #define RCC_CSR_PINRSTF_Msk (0x1U << RCC_CSR_PINRSTF_Pos) /*!< 0x04000000 */ #define RCC_CSR_PINRSTF RCC_CSR_PINRSTF_Msk