diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2019-06-27 02:15:32 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2019-06-27 03:17:30 +0200 |
commit | 9d538b467cd0ef7db5b149ff66b1cfc89af5032e (patch) | |
tree | 45d700156445a621d7edda973a1c2849002794a3 /Makefile | |
parent | cfc91f61ad120c5a9de658af1c16f092954dfd11 (diff) |
Build: Replace 'ENABLE_SERIAL=1' with 'ENABLE_SERIAL=yes'.
That is, to enable communicating with the host via a simple Serial
protocol. The feature is disabled by default.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ CXXFLAGS = -DARDUINO_AVR_MODEL01 \ -DUSB_MANUFACTURER="\"keyboardio\"" -DUSB_PRODUCT="\"Model 01\"" \ -DKALEIDOSCOPE_HARDWARE_H="\"Kaleidoscope-Hardware-Model01.h\"" -ifeq ($(ENABLE_SERIAL),1) +ifeq ($(ENABLE_SERIAL),yes) CXXFLAGS += -DENABLE_SERIAL endif |