diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2016-06-08 09:29:45 +0200 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2016-06-08 09:29:45 +0200 |
commit | 9abe50042629ac64443738d4f4b66da95b116686 (patch) | |
tree | 55cb03618ac1d7c58ab60717e606ca554b190e57 /projects/bootloader/stm-init.c | |
parent | 3277ffbfe960da93c6f617005cc619958ed419d8 (diff) | |
parent | 8c345a87ef4d72d3aef2af9fc4114599d7ee0e56 (diff) |
Merge branch 'master' of git.cryptech.is.:sw/stm32
Diffstat (limited to 'projects/bootloader/stm-init.c')
-rw-r--r-- | projects/bootloader/stm-init.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/projects/bootloader/stm-init.c b/projects/bootloader/stm-init.c new file mode 100644 index 0000000..209dc8c --- /dev/null +++ b/projects/bootloader/stm-init.c @@ -0,0 +1,8 @@ +/* Disable modules that the bootloader doesn't need. */ + +#include "stm32f4xx_hal.h" + +#undef HAL_I2C_MODULE_ENABLED +#undef HAL_SPI_MODULE_ENABLED + +#include "../../stm-init.c" |