diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2016-11-21 11:45:58 +0100 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2016-11-21 14:14:09 +0100 |
commit | e7f5fdebef90d0be01edeabd4ea260138ed1fbd0 (patch) | |
tree | 2396c0328e3bbee3f8286fe3c0b443bef4c76d58 /common.mk | |
parent | c4678339908e413cbc6751cf863267807acafc85 (diff) |
add RNG using ChaCha20 as CSPRNG
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -31,6 +31,7 @@ OPENOCD_BOARD_DIR ?= /usr/share/openocd/scripts/board # the OPENOCD_BOARD_DIR directory. # OPENOCD_PROC_FILE ?= stm32f4discovery.cfg +#OPENOCD_PROC_FILE ?= st_nucleo_f4.cfg # MCU selection parameters # @@ -61,7 +62,7 @@ SIZE=arm-none-eabi-size GDB=arm-none-eabi-gdb OPENOCD=openocd -CFLAGS = -ggdb -O2 -Wall -Wextra -Warray-bounds +CFLAGS = -ggdb -O1 -Wall -Wextra -Warray-bounds CFLAGS += -mcpu=cortex-m4 -mthumb -mlittle-endian -mthumb-interwork CFLAGS += -mfloat-abi=hard -mfpu=fpv4-sp-d16 CFLAGS += $(STDPERIPH_SETTINGS) |