Uncomment lcd option (still) not enabled by default

use Makefile_Enabled_Options.common
to enable lcd if desired.
This commit is contained in:
marshmellow42 2018-08-03 16:57:33 -04:00
commit a7c2ae2317
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ APP_CFLAGS = -DON_DEVICE \
include ../common/Makefile_Enabled_Options.common
ifneq (,$(findstring LCD,$(APP_CFLAGS)))
SRC_LCD = #fonts.c LCD.c
SRC_LCD = fonts.c LCD.c
else
SRC_LCD =
endif

View file

@ -15,7 +15,6 @@ APP_CFLAGS += -DWITH_ISO14443a_StandAlone \
-DWITH_GUI
#END
#-DWITH_LCD
### Standalone modes:
#-DWITH_ISO14443a_StandAlone
@ -36,5 +35,6 @@ APP_CFLAGS += -DWITH_ISO14443a_StandAlone \
#-DWITH_HFSNOOP \ include HFSNOOP support in build
#-DWITH_SMARTCARD \ include SMARTCARD support in build
#-DWITH_GUI \ include QT GUI/Graph support in build
#-DWITH_LCD \ include LCD support in build (experimental?)
#marshmellow NOTE: tested GUI, and SMARTCARD removal only...