msp430f5529: Add empty msp_exp430f5529lp BSP and DCD.

This commit is contained in:
William D. Jones
2019-09-14 18:01:52 -04:00
parent d7137e36ca
commit 6280e4e7cb
11 changed files with 8697 additions and 9 deletions

View File

@@ -2,8 +2,12 @@
# Common make definition for all examples
#
# Compiler
CROSS_COMPILE = arm-none-eabi-
# Compiler
ifeq ($(BOARD), msp_exp430f5529lp)
CROSS_COMPILE = msp430-elf-
else
CROSS_COMPILE = arm-none-eabi-
endif
CC = $(CROSS_COMPILE)gcc
CXX = $(CROSS_COMPILE)g++
OBJCOPY = $(CROSS_COMPILE)objcopy
@@ -67,10 +71,13 @@ CFLAGS += \
-Wno-deprecated-declarations \
-Wnested-externs \
-Wunreachable-code \
-Wno-error=lto-type-mismatch \
-ffunction-sections \
-fdata-sections
ifneq ($(BOARD), msp_exp430f5529lp)
CFLAGS += -Wno-error=lto-type-mismatch
endif
# This causes lots of warning with nrf5x build due to nrfx code
# CFLAGS += -Wcast-align