From 176645b9fcc3fdd75f894b8be3aac1c5f89184f5 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 25 Apr 2019 21:16:11 +0200 Subject: [PATCH 1/2] REM: removed unused define --- armsrc/Makefile | 1 - armsrc/Standalone/readme.md | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/armsrc/Makefile b/armsrc/Makefile index a5d0b1403..15bf55d33 100644 --- a/armsrc/Makefile +++ b/armsrc/Makefile @@ -28,7 +28,6 @@ endif #in the next section to remove that particular feature from compilation. # NO space,TABs after the "\" sign. APP_CFLAGS = $(PLATFORM_DEFS) \ - -DWITH_CRC \ -DON_DEVICE \ -DWITH_LF \ -DWITH_HITAG \ diff --git a/armsrc/Standalone/readme.md b/armsrc/Standalone/readme.md index 12fe6c145..21eadc45f 100644 --- a/armsrc/Standalone/readme.md +++ b/armsrc/Standalone/readme.md @@ -68,8 +68,7 @@ Once all this is done, you and others can now easily compile different standalon #remove one of the following defines and comment out the relevant line #in the next section to remove that particular feature from compilation. # NO space,TABs after the "\" sign. -APP_CFLAGS = -DWITH_CRC \ - -DON_DEVICE \ +APP_CFLAGS = -DON_DEVICE \ -DWITH_LF \ -DWITH_HITAG \ -DWITH_ISO15693 \ From a59f7a50ce8b9e639ebf70cc6db76fadc5d23ad8 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 25 Apr 2019 21:21:53 +0200 Subject: [PATCH 2/2] fix: spellingmistake --- armsrc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/armsrc/Makefile b/armsrc/Makefile index 7cf1a0ce1..ed129c950 100644 --- a/armsrc/Makefile +++ b/armsrc/Makefile @@ -87,13 +87,13 @@ else SRC_FPC = endif -ifneq (,$(findstring WITH_HITAG,$(APP_CLAGS))) +ifneq (,$(findstring WITH_HITAG,$(APP_CFLAGS))) SRC_HITAG = hitag2_crypto.c hitag2.c hitagS.c else SRC_HITAG = endif -ifneq (,$(findstring WITH_LCD,$(APP_CLAGS))) +ifneq (,$(findstring WITH_LCD,$(APP_CFLAGS))) SRC_LCD = fonts.c LCD.c else SRC_LCD =