mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
Update readme.md
This commit is contained in:
parent
1e797e1720
commit
839a0ef9fb
1 changed files with 8 additions and 1 deletions
|
@ -54,12 +54,13 @@ sample:
|
||||||
Which indicates your mode targets LF and is called FOO.
|
Which indicates your mode targets LF and is called FOO.
|
||||||
|
|
||||||
This leads to your next step, your DEFINE name needed in Makefile.
|
This leads to your next step, your DEFINE name needed in Makefile.
|
||||||
|
|
||||||
`WITH_STANDALONE_LF_FOORUN`
|
`WITH_STANDALONE_LF_FOORUN`
|
||||||
|
|
||||||
|
|
||||||
## Update COMMON/MAKEFILE.HAL
|
## Update COMMON/MAKEFILE.HAL
|
||||||
|
|
||||||
Samples of directive flag used in the `common/Makefile.hal`:
|
Samples of directive flag used in the `common/Makefile.ha` and your suggested DEFINE.
|
||||||
```
|
```
|
||||||
#PLATFORM_DEFS += -DWITH_STANDALONE_LF_SAMYRUN
|
#PLATFORM_DEFS += -DWITH_STANDALONE_LF_SAMYRUN
|
||||||
#PLATFORM_DEFS += -DWITH_STANDALONE_LF_ICERUN
|
#PLATFORM_DEFS += -DWITH_STANDALONE_LF_ICERUN
|
||||||
|
@ -69,12 +70,18 @@ Samples of directive flag used in the `common/Makefile.hal`:
|
||||||
#PLATFORM_DEFS += -DWITH_STANDALONE_HF_MATTYRUN
|
#PLATFORM_DEFS += -DWITH_STANDALONE_HF_MATTYRUN
|
||||||
#PLATFORM_DEFS += -DWITH_STANDALONE_HF_COLIN
|
#PLATFORM_DEFS += -DWITH_STANDALONE_HF_COLIN
|
||||||
#PLATFORM_DEFS += -DWITH_STANDALONE_HF_BOG
|
#PLATFORM_DEFS += -DWITH_STANDALONE_HF_BOG
|
||||||
|
#PLATFORM_DEFS += -DWITH_STANDALONE_LF_FOORUN
|
||||||
```
|
```
|
||||||
|
|
||||||
## Update ARMSRC/MAKEFILE
|
## Update ARMSRC/MAKEFILE
|
||||||
Add your source code files like the following sample in the `armsrc/Makefile`
|
Add your source code files like the following sample in the `armsrc/Makefile`
|
||||||
|
|
||||||
```
|
```
|
||||||
|
# WITH_STANDALONE_LF_ICERUN
|
||||||
|
ifneq (,$(findstring WITH_STANDALONE_LF_ICERUN,$(APP_CFLAGS)))
|
||||||
|
SRC_STANDALONE = lf_icerun.c
|
||||||
|
endif
|
||||||
|
|
||||||
# WITH_STANDALONE_LF_FOO
|
# WITH_STANDALONE_LF_FOO
|
||||||
ifneq (,$(findstring WITH_STANDALONE_LF_FOO,$(APP_CFLAGS)))
|
ifneq (,$(findstring WITH_STANDALONE_LF_FOO,$(APP_CFLAGS)))
|
||||||
SRC_STANDALONE = lf_foo.c
|
SRC_STANDALONE = lf_foo.c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue