X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Fconfig.mk;h=554e79a459786dae022e0656bf59cc3ffe44aff5;hp=4774a5af133e2d7faf6e04083920a87ebe4e680d;hb=207c37e05544b7ac123e00f177a502fd67ef35f1;hpb=a4a46e7b64a73573df1696ac52f9c9e49bdbadfd diff --git a/firmware/config.mk b/firmware/config.mk index 4774a5a..554e79a 100644 --- a/firmware/config.mk +++ b/firmware/config.mk @@ -20,6 +20,7 @@ mcu ?= msp430f2274 platform := goodfet # This will link to fit in a '2254, so unneeded packages should be omited. CONFIG_ccspi = n +CONFIG_nrf = y endif ifneq (,$(findstring $(board),goodfet40 goodfet41)) @@ -28,6 +29,32 @@ platform := goodfet CONFIG_nrf = y endif +ifneq (,$(findstring $(board),stm32f4discovery)) +GCC = arm-none-eabi-gcc +CC = arm-none-eabi-gcc +LD = arm-none-eabi-ld -v +AR = arm-none-eabi-ar +AS = arm-none-eabi-as +CP = arm-none-eabi-objcopy +OD = arm-none-eabi-objdump +CFLAGS = -I./ -Iinclude/ -c -fno-common -O1 -g -mcpu=cortex-m3 -mthumb +AFLAGS = -ahls -mapcs-32 +LFLAGS = -Ttmplink.cmd -nostartfiles +CPFLAGS = -Obinary +ODFLAGS = -S +LDFLAGS = + +mcu ?= stm32f407 +platform := stm32f4discovery +config = monitor +endif + +ifneq (,$(findstring $(board),facedancer10)) +mcu ?= msp430f2618 +platform := goodfet +config = monitor spi maxusb +endif + ifeq ($(board),z1) mcu ?= msp430f2617 platform := z1 @@ -80,8 +107,10 @@ endif ifneq (,$(findstring $(board),donbfet)) GCC := avr-gcc +CC := avr-gcc mcu ?= atmega644p -CFLAGS=$(DEBUG) -mmcu=$(mcu) -W -Os -mcall-prologues -Wall -Wextra -Wuninitialized -fpack-struct -fshort-enums -funsigned-bitfields +platform = donbfet +CFLAGS=$(DEBUG) -Iinclude -mmcu=$(mcu) -W -Os -mcall-prologues -Wall -Wextra -Wuninitialized -fpack-struct -fshort-enums -funsigned-bitfields config := monitor avr spi jscan endif