From 3cbf2d87bfbf2d5c680525197dee861fe9a6c575 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Tue, 29 Nov 2011 02:26:22 -0500 Subject: libmaple/stm32: Add enum stm32_series, STM32_MCU_SERIES. enum stm32_series gives a tag to each STM32 series, including the ones we don't yet support. STM32_MCU_SERIES is a define which the series stm32.h header must provide, identifying the series of the MCU being targeted. Signed-off-by: Marti Bolivar --- libmaple/include/libmaple/stm32.h | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'libmaple/include') diff --git a/libmaple/include/libmaple/stm32.h b/libmaple/include/libmaple/stm32.h index 356a360..4c0898b 100644 --- a/libmaple/include/libmaple/stm32.h +++ b/libmaple/include/libmaple/stm32.h @@ -36,8 +36,21 @@ extern "C" { #endif -/* Everything enclosed in the following __DOXYGEN_PREDEFINED_HACK - * conditional block must be defined in the series header. */ +/** + * @brief STM32 series identifiers. + */ +typedef enum stm32_series { + STM32_SERIES_F1, /**< F1 series */ + STM32_SERIES_F2, /**< F2 series */ + STM32_SERIES_L1, /**< L1 series */ + STM32_SERIES_F4, /**< F4 series */ +} stm32_series; + +/* The series header is responsible for defining: + * + * - Everything enclosed in the following __DOXYGEN_PREDEFINED_HACK + * conditional block. + */ #include #ifdef __DOXYGEN_PREDEFINED_HACK @@ -69,6 +82,11 @@ extern "C" { * Series- and MCU-specific values. */ +/** + * @brief enum stm32_series value for the MCU being targeted. + */ +#define STM32_MCU_SERIES + /** * @brief Number of interrupts in the vector table. * -- cgit v1.2.3