1
0
Fork 0

Add NO_PRINT and NO_DEBUG config options.

- NO_PRINT: disable print.h API(also disable debug.h)
- NO_DEBUG: disable debug.h API
This commit is contained in:
tmk 2013-03-19 14:08:40 +09:00
parent 8580c8d291
commit 9a106537f6
7 changed files with 77 additions and 32 deletions

View file

@ -31,6 +31,9 @@ endif
ifdef CONSOLE_ENABLE
OPT_DEFS += -DCONSOLE_ENABLE
else
OPT_DEFS += -DNO_PRINT
OPT_DEFS += -DNO_DEBUG
endif
ifdef NKRO_ENABLE