From 8ea01ff12746250961efc1c1c96b864d7956af27 Mon Sep 17 00:00:00 2001 From: Riccardo Date: Sun, 7 Jul 2019 21:38:40 -0700 Subject: [PATCH] Pedal: no built-in functions to avoid puts and putc re-definitions --- board/pedal/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/pedal/Makefile b/board/pedal/Makefile index ce907c910b5cab..63144fc92bda60 100644 --- a/board/pedal/Makefile +++ b/board/pedal/Makefile @@ -4,7 +4,7 @@ PROJ_NAME = comma CFLAGS = -O2 -Wall -Wextra -Wstrict-prototypes -std=gnu11 -DPEDAL CFLAGS += -mlittle-endian -mthumb -mcpu=cortex-m3 CFLAGS += -msoft-float -DSTM32F2 -DSTM32F205xx -CFLAGS += -I ../inc -I ../ -I ../../ -nostdlib +CFLAGS += -I ../inc -I ../ -I ../../ -nostdlib -fno-builtin CFLAGS += -T../stm32_flash.ld STARTUP_FILE = startup_stm32f205xx