diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-11-29 02:26:22 -0500 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2012-04-11 16:56:52 -0400 |
commit | 3cbf2d87bfbf2d5c680525197dee861fe9a6c575 (patch) | |
tree | 315d554740e775435309366948adb0eb756fda5b /libmaple/stm32f1/include | |
parent | c2a937bbb56294df10eec082ab23c353edf4629b (diff) | |
download | librambutan-3cbf2d87bfbf2d5c680525197dee861fe9a6c575.tar.gz librambutan-3cbf2d87bfbf2d5c680525197dee861fe9a6c575.zip |
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 <mbolivar@leaflabs.com>
Diffstat (limited to 'libmaple/stm32f1/include')
-rw-r--r-- | libmaple/stm32f1/include/series/stm32.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libmaple/stm32f1/include/series/stm32.h b/libmaple/stm32f1/include/series/stm32.h index f0ca616..86f0294 100644 --- a/libmaple/stm32f1/include/series/stm32.h +++ b/libmaple/stm32f1/include/series/stm32.h @@ -66,9 +66,11 @@ extern "C" { #endif /* - * MCU-specific values. + * Series- and MCU-specific values. */ +#define STM32_MCU_SERIES STM32_SERIES_F1 + #if defined(MCU_STM32F103RB) # define STM32_NR_GPIO_PORTS 4 # define STM32_SRAM_END ((void*)0x20005000) |