From 34c1da7ad424d7156df02fcec950fcfe59657967 Mon Sep 17 00:00:00 2001 From: bogiton <34060135+bogiton@users.noreply.github.com> Date: Tue, 16 Oct 2018 19:39:29 +0000 Subject: [PATCH] Include the HF_BOG standalone mode --- armsrc/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/armsrc/Makefile b/armsrc/Makefile index 8f0cd025e..8a576f001 100644 --- a/armsrc/Makefile +++ b/armsrc/Makefile @@ -24,7 +24,7 @@ APP_CFLAGS = -DWITH_CRC \ -DWITH_FLASH \ -DWITH_SMARTCARD \ -DWITH_HFSNOOP \ - -DWITH_LF_SAMYRUN \ + -DWITH_HF_BOG \ -DWITH_FPC \ -fno-strict-aliasing -ffunction-sections -fdata-sections @@ -42,6 +42,7 @@ APP_CFLAGS = -DWITH_CRC \ # -DWITH_HF_YOUNG # -DWITH_HF_MATTYRUN # -DWITH_HF_COLIN +# -DWITH_HF_BOG SRC_LCD = fonts.c LCD.c @@ -106,6 +107,10 @@ endif ifneq (,$(findstring WITH_HF_COLIN,$(APP_CFLAGS))) SRC_STANDALONE = vtsend.c hf_colin.c endif +# WITH_HF_BOG +ifneq (,$(findstring WITH_HF_BOG,$(APP_CFLAGS))) + SRC_STANDALONE = hf_bog.c +endif #the FPGA bitstream files. Note: order matters! FPGA_BITSTREAMS = fpga_lf.bit fpga_hf.bit