Add STM32F429I-DISCO1 support(default serial:USART1).

This commit is contained in:
Martin Foo
2017-07-02 18:26:52 +08:00
committed by Travis Geiselbrecht
parent 42ddc062f3
commit b66bd3e420
12 changed files with 236 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
STM32_CHIP := stm32f429
PLATFORM := stm32f4xx
GLOBAL_DEFINES += \
ENABLE_UART1=1 \
TARGET_HAS_DEBUG_LED=1 \
HSE_VALUE=8000000 \
PLL_M_VALUE=8 \
PLL_N_VALUE=336 \
PLL_P_VALUE=2
MODULE_SRCS += \
$(LOCAL_DIR)/init.c
include make/module.mk