From a39a5af1cbc6f729f5577c52589538533de7c311 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Tue, 29 Nov 2011 02:48:58 -0500 Subject: build system: Add board include files for target-config.mk. target-config.mk is getting a little long with all the boards in it. Break out the board-specific bits into individual files under support/make/board-includes. This has the added benefit that adding a new board requires less dirtying of the working tree, which is nice for jumping around branches with an experimental board. Signed-off-by: Marti Bolivar --- support/make/board-includes/maple.mk | 6 +++ support/make/board-includes/maple_RET6.mk | 6 +++ support/make/board-includes/maple_mini.mk | 6 +++ support/make/board-includes/maple_native.mk | 6 +++ support/make/board-includes/olimex_stm32_h103.mk | 6 +++ support/make/target-config.mk | 48 ++---------------------- 6 files changed, 33 insertions(+), 45 deletions(-) create mode 100644 support/make/board-includes/maple.mk create mode 100644 support/make/board-includes/maple_RET6.mk create mode 100644 support/make/board-includes/maple_mini.mk create mode 100644 support/make/board-includes/maple_native.mk create mode 100644 support/make/board-includes/olimex_stm32_h103.mk (limited to 'support') diff --git a/support/make/board-includes/maple.mk b/support/make/board-includes/maple.mk new file mode 100644 index 0000000..3c83ee7 --- /dev/null +++ b/support/make/board-includes/maple.mk @@ -0,0 +1,6 @@ +MCU := STM32F103RB +PRODUCT_ID := 0003 +ERROR_LED_PORT := GPIOA +ERROR_LED_PIN := 5 +DENSITY := STM32_MEDIUM_DENSITY +TARGET_FLAGS += -D$(DENSITY) diff --git a/support/make/board-includes/maple_RET6.mk b/support/make/board-includes/maple_RET6.mk new file mode 100644 index 0000000..3f61867 --- /dev/null +++ b/support/make/board-includes/maple_RET6.mk @@ -0,0 +1,6 @@ +MCU := STM32F103RE +PRODUCT_ID := 0003 +ERROR_LED_PORT := GPIOA +ERROR_LED_PIN := 5 +DENSITY := STM32_HIGH_DENSITY +TARGET_FLAGS += -D$(DENSITY) diff --git a/support/make/board-includes/maple_mini.mk b/support/make/board-includes/maple_mini.mk new file mode 100644 index 0000000..b1afa4f --- /dev/null +++ b/support/make/board-includes/maple_mini.mk @@ -0,0 +1,6 @@ +MCU := STM32F103CB +PRODUCT_ID := 0003 +ERROR_LED_PORT := GPIOB +ERROR_LED_PIN := 1 +DENSITY := STM32_MEDIUM_DENSITY +TARGET_FLAGS += -D$(DENSITY) diff --git a/support/make/board-includes/maple_native.mk b/support/make/board-includes/maple_native.mk new file mode 100644 index 0000000..555d71b --- /dev/null +++ b/support/make/board-includes/maple_native.mk @@ -0,0 +1,6 @@ +MCU := STM32F103ZE +PRODUCT_ID := 0003 +ERROR_LED_PORT := GPIOC +ERROR_LED_PIN := 15 +DENSITY := STM32_HIGH_DENSITY +TARGET_FLAGS += -D$(DENSITY) diff --git a/support/make/board-includes/olimex_stm32_h103.mk b/support/make/board-includes/olimex_stm32_h103.mk new file mode 100644 index 0000000..6b45c17 --- /dev/null +++ b/support/make/board-includes/olimex_stm32_h103.mk @@ -0,0 +1,6 @@ +MCU := STM32F103RB +PRODUCT_ID := 0003 +ERROR_LED_PORT := GPIOC +ERROR_LED_PIN := 12 +DENSITY := STM32_MEDIUM_DENSITY +TARGET_FLAGS += -D$(DENSITY) diff --git a/support/make/target-config.mk b/support/make/target-config.mk index 2e360ea..fcedd3e 100644 --- a/support/make/target-config.mk +++ b/support/make/target-config.mk @@ -2,52 +2,10 @@ TARGET_FLAGS := -# Board-specific configuration values. Flash and SRAM sizes in bytes. +# Board-specific configuration values. Punt these to board-specific +# include files. -ifeq ($(BOARD), maple) - MCU := STM32F103RB - PRODUCT_ID := 0003 - ERROR_LED_PORT := GPIOA - ERROR_LED_PIN := 5 - DENSITY := STM32_MEDIUM_DENSITY - TARGET_FLAGS += -D$(DENSITY) -endif - -ifeq ($(BOARD), maple_native) - MCU := STM32F103ZE - PRODUCT_ID := 0003 - ERROR_LED_PORT := GPIOC - ERROR_LED_PIN := 15 - DENSITY := STM32_HIGH_DENSITY - TARGET_FLAGS += -D$(DENSITY) -endif - -ifeq ($(BOARD), maple_mini) - MCU := STM32F103CB - PRODUCT_ID := 0003 - ERROR_LED_PORT := GPIOB - ERROR_LED_PIN := 1 - DENSITY := STM32_MEDIUM_DENSITY - TARGET_FLAGS += -D$(DENSITY) -endif - -ifeq ($(BOARD), maple_RET6) - MCU := STM32F103RE - PRODUCT_ID := 0003 - ERROR_LED_PORT := GPIOA - ERROR_LED_PIN := 5 - DENSITY := STM32_HIGH_DENSITY - TARGET_FLAGS += -D$(DENSITY) -endif - -ifeq ($(BOARD), olimex_stm32_h103) - MCU := STM32F103RB - PRODUCT_ID := 0003 - ERROR_LED_PORT := GPIOC - ERROR_LED_PIN := 12 - DENSITY := STM32_MEDIUM_DENSITY - TARGET_FLAGS += -D$(DENSITY) -endif +include $(MAKEDIR)/board-includes/$(BOARD).mk TARGET_FLAGS += -DBOARD_$(BOARD) -DMCU_$(MCU) \ -DERROR_LED_PORT=$(ERROR_LED_PORT) \ -- cgit v1.2.3