mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-26 18:12:34 +08:00
Include the HF_BOG standalone mode
This commit is contained in:
parent
bd34d145f1
commit
34c1da7ad4
1 changed files with 6 additions and 1 deletions
|
@ -24,7 +24,7 @@ APP_CFLAGS = -DWITH_CRC \
|
||||||
-DWITH_FLASH \
|
-DWITH_FLASH \
|
||||||
-DWITH_SMARTCARD \
|
-DWITH_SMARTCARD \
|
||||||
-DWITH_HFSNOOP \
|
-DWITH_HFSNOOP \
|
||||||
-DWITH_LF_SAMYRUN \
|
-DWITH_HF_BOG \
|
||||||
-DWITH_FPC \
|
-DWITH_FPC \
|
||||||
-fno-strict-aliasing -ffunction-sections -fdata-sections
|
-fno-strict-aliasing -ffunction-sections -fdata-sections
|
||||||
|
|
||||||
|
@ -42,6 +42,7 @@ APP_CFLAGS = -DWITH_CRC \
|
||||||
# -DWITH_HF_YOUNG
|
# -DWITH_HF_YOUNG
|
||||||
# -DWITH_HF_MATTYRUN
|
# -DWITH_HF_MATTYRUN
|
||||||
# -DWITH_HF_COLIN
|
# -DWITH_HF_COLIN
|
||||||
|
# -DWITH_HF_BOG
|
||||||
|
|
||||||
|
|
||||||
SRC_LCD = fonts.c LCD.c
|
SRC_LCD = fonts.c LCD.c
|
||||||
|
@ -106,6 +107,10 @@ endif
|
||||||
ifneq (,$(findstring WITH_HF_COLIN,$(APP_CFLAGS)))
|
ifneq (,$(findstring WITH_HF_COLIN,$(APP_CFLAGS)))
|
||||||
SRC_STANDALONE = vtsend.c hf_colin.c
|
SRC_STANDALONE = vtsend.c hf_colin.c
|
||||||
endif
|
endif
|
||||||
|
# WITH_HF_BOG
|
||||||
|
ifneq (,$(findstring WITH_HF_BOG,$(APP_CFLAGS)))
|
||||||
|
SRC_STANDALONE = hf_bog.c
|
||||||
|
endif
|
||||||
|
|
||||||
#the FPGA bitstream files. Note: order matters!
|
#the FPGA bitstream files. Note: order matters!
|
||||||
FPGA_BITSTREAMS = fpga_lf.bit fpga_hf.bit
|
FPGA_BITSTREAMS = fpga_lf.bit fpga_hf.bit
|
||||||
|
|
Loading…
Reference in a new issue