summaryrefslogtreecommitdiff
path: root/examples/make.mk
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-05-14 17:36:03 +0700
committerhathach <[email protected]>2019-05-14 17:36:03 +0700
commit6e443d191817617d030507d696a8b21e446f5aa8 (patch)
tree9ee1c7fab7f29265aff82193ad6163918b08117b /examples/make.mk
parent851cf5426a7fffaebff146cb6fae0a698e4c3a55 (diff)
enable CFG_TUSB_DEBUG on DEBUG build
Diffstat (limited to 'examples/make.mk')
-rw-r--r--examples/make.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/make.mk b/examples/make.mk
index d972c1fea..444b22310 100644
--- a/examples/make.mk
+++ b/examples/make.mk
@@ -62,7 +62,7 @@ CFLAGS += \
# Debugging/Optimization
ifeq ($(DEBUG), 1)
- CFLAGS += -O0 -ggdb
+ CFLAGS += -O0 -ggdb -DCFG_TUSB_DEBUG=1
else
CFLAGS += -flto -Os
endif