diff options
author | jaseg <git@jaseg.net> | 2019-01-12 12:31:59 +0900 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2019-01-12 12:54:29 +0900 |
commit | 43f64f0e1fad6e3586cdd5b6f0243f03db9adc23 (patch) | |
tree | b2dc5c38e5b60230970b2e50e06de974b4b702fd /fw/Makefile | |
parent | c6547c6e6fa381a7811d0c47603291d82be7e440 (diff) | |
download | 8seg-43f64f0e1fad6e3586cdd5b6f0243f03db9adc23.tar.gz 8seg-43f64f0e1fad6e3586cdd5b6f0243f03db9adc23.tar.bz2 8seg-43f64f0e1fad6e3586cdd5b6f0243f03db9adc23.zip |
Split receiver into logical parts
Diffstat (limited to 'fw/Makefile')
-rw-r--r-- | fw/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fw/Makefile b/fw/Makefile index cb2f244..3050fd1 100644 --- a/fw/Makefile +++ b/fw/Makefile @@ -76,7 +76,7 @@ sources.tar.xz.zip: sources.tar.xz sources.c: sources.tar.xz.zip xxd -i $< | head -n -1 | sed 's/=/__attribute__((section(".source_tarball"))) =/' > $@ -main.elf: main.o startup_stm32f030x6.o system_stm32f0xx.o $(HAL_PATH)/Src/stm32f0xx_ll_utils.o base.o cmsis_exports.o ../common/8b10b.o adc.o +main.elf: main.o startup_stm32f030x6.o system_stm32f0xx.o $(HAL_PATH)/Src/stm32f0xx_ll_utils.o base.o cmsis_exports.o ../common/8b10b.o adc.o protocol.o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(OBJCOPY) -O ihex $@ $(@:.elf=.hex) $(OBJCOPY) -O binary $@ $(@:.elf=.bin) |