X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Fconfig.mk;h=71b9a58964f2802cbb2baed92ea431ea8027126f;hp=4774a5af133e2d7faf6e04083920a87ebe4e680d;hb=60c3c89f25870849e5c64dd415429822f483bc3f;hpb=a4a46e7b64a73573df1696ac52f9c9e49bdbadfd diff --git a/firmware/config.mk b/firmware/config.mk index 4774a5a..71b9a58 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,42 @@ platform := goodfet CONFIG_nrf = y endif +ifneq (,$(findstring $(board),stm32f4discovery)) + +periph ?= /opt/STM32F4xx_StdPeriph_Driver +discovery ?= /opt/STM32F4-Discovery_FW_V1.1.0 +pincs ?= -I$(periph)/inc -I$(discovery)/Libraries/CMSIS/ST/STM32F4xx/Include -I$(discovery)/Libraries/CMSIS/Include -Dassert_param\(x\)= +psrc ?= /opt/STM32F4xx_StdPeriph_Driver/src + + +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 = -c -fno-common -O1 -g -mcpu=cortex-m3 -mthumb $(pincs) +AFLAGS = -ahls -mapcs-32 +LFLAGS = -Ttmplink.cmd -nostartfiles +CPFLAGS = -Obinary +ODFLAGS = -S +LDFLAGS = + + +mcu ?= stm32f407 +platform := stm32f4discovery +config = monitor +extralibs = lib/cortexm3.o lib/system_stm32f4xx.o $(psrc)/stm32f4xx_rcc.o $(psrc)/stm32f4xx_gpio.o + +endif + +ifneq (,$(findstring $(board),facedancer10)) +mcu ?= msp430f2618 +platform := goodfet +config = monitor spi maxusb +endif + ifeq ($(board),z1) mcu ?= msp430f2617 platform := z1 @@ -80,8 +117,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