diff options
author | David Kiliani <mail@davidkiliani.de> | 2011-09-17 20:23:41 +0200 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-09-27 16:44:53 -0400 |
commit | 5dc36cafc4b4d7f6aec0b7ad059f5a01069b766b (patch) | |
tree | ec7db0f9c53fa58f9a040163c5659c27572e0789 /support | |
parent | 93dd241dd317b1d4f0b63bdb313fb82dd7419b02 (diff) | |
download | librambutan-5dc36cafc4b4d7f6aec0b7ad059f5a01069b766b.tar.gz librambutan-5dc36cafc4b4d7f6aec0b7ad059f5a01069b766b.zip |
Add support for the Olimex STM32 H103 board.
Pin layout and header files for the STM32 H103 prototype board from
Olimex featuring an STM32F103RBT6 chip. This commit contains all
necessary changes to compile with BOARD=olimex_stm32_h103.
Signed-off-by: David Kiliani <mail@davidkiliani.de>
Diffstat (limited to 'support')
l--------- | support/ld/olimex_stm32_h103 | 1 | ||||
-rw-r--r-- | support/make/target-config.mk | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/support/ld/olimex_stm32_h103 b/support/ld/olimex_stm32_h103 new file mode 120000 index 0000000..2d8bbed --- /dev/null +++ b/support/ld/olimex_stm32_h103 @@ -0,0 +1 @@ +maple
\ No newline at end of file diff --git a/support/make/target-config.mk b/support/make/target-config.mk index a30a5da..c12fe3b 100644 --- a/support/make/target-config.mk +++ b/support/make/target-config.mk @@ -40,6 +40,16 @@ ifeq ($(BOARD), maple_RET6) SRAM_SIZE := 65536 endif +ifeq ($(BOARD), olimex_stm32_h103) + MCU := STM32F103RB + PRODUCT_ID := 0003 + ERROR_LED_PORT := GPIOC + ERROR_LED_PIN := 12 + DENSITY := STM32_MEDIUM_DENSITY + FLASH_SIZE := 131072 + SRAM_SIZE := 20480 +endif + # Memory target-specific configuration values ifeq ($(MEMORY_TARGET), ram) |