* Added f2xxx for two series (for example z1)
* f1xxx is baseline and always included * Cleaned up the names of uart and spi (no x in names) * Updated SPI configuration for WiSMote
This commit is contained in:
parent
1a761ec3eb
commit
cdfa8708e3
15 changed files with 289 additions and 204 deletions
|
@ -12,11 +12,15 @@ CONTIKI_CPU=$(CONTIKI)/cpu/msp430
|
|||
### Define the source files we have in the MSP430 port
|
||||
|
||||
ifneq (,$(findstring msp430x5,$(MCU)))
|
||||
CONTIKI_CPU_DIRS = ${addprefix f5xxx/,. dev} . dev
|
||||
CONTIKI_CPU_FAM_DIR = f5xxx
|
||||
else
|
||||
CONTIKI_CPU_DIRS = ${addprefix f1xxx/,. dev} . dev
|
||||
ifneq (,$(findstring msp430x2,$(MCU)))
|
||||
CONTIKI_CPU_FAM_DIR = f2xxx
|
||||
endif
|
||||
endif
|
||||
|
||||
CONTIKI_CPU_DIRS = $(CONTIKI_CPU_FAM_DIR) f1xxx . dev
|
||||
|
||||
MSP430 = msp430.c flash.c clock.c leds.c leds-arch.c \
|
||||
watchdog.c lpm.c mtarch.c rtimer-arch.c
|
||||
UIPDRIVERS = me.c me_tabs.c slip.c crc16.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue