diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2016-06-01 21:03:05 +0200 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2016-06-01 21:03:05 +0200 |
commit | 9915d1ba46e30990ea149c7a09d1d2ed0d13a331 (patch) | |
tree | 160f184c1dfc8548de8c6293a5d16376c65ab6ec /Makefile | |
parent | 2d08b2038a5cf14a92d8ca3e10fb3421e73e5b74 (diff) |
Implement circular buffer UART RX using interrupts.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -63,7 +63,8 @@ export BOARD_OBJS = \ $(TOPLEVEL)/syscalls.o \ $(BOARD_DIR)/TOOLCHAIN_GCC_ARM/startup_stm32f429xx.o \ $(BOARD_DIR)/system_stm32f4xx.o \ - $(BOARD_DIR)/stm32f4xx_hal_msp.o + $(BOARD_DIR)/stm32f4xx_hal_msp.o \ + $(BOARD_DIR)/stm32f4xx_it.o # cross-building tools PREFIX=arm-none-eabi- |