Update bindings (touch improvements)

Use debug symbols in Release buils as well. This is useful to debug problems that happen only on Release

Lower log level to WARN. Default log was Verbose and displayed every GPIO read...
This commit is contained in:
Amir Gonnen 2019-10-10 00:20:52 +03:00
parent d60b769c8a
commit 8aa3010190
3 changed files with 5 additions and 2 deletions

@ -1 +1 @@
Subproject commit 736b5f0e37d9017a80b3068416c7dc49f788dbec Subproject commit d633ad0882a0b17c70adb1680a793ace43da7368

View File

@ -222,8 +222,8 @@ LIBGCC_FILE_NAME = $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
LIBSTDCXX_FILE_NAME = $(shell $(CXX) $(CXXFLAGS) -print-file-name=libstdc++.a) LIBSTDCXX_FILE_NAME = $(shell $(CXX) $(CXXFLAGS) -print-file-name=libstdc++.a)
# Debugging/Optimization # Debugging/Optimization
ifeq ($(DEBUG), 1)
CFLAGS += -g CFLAGS += -g
ifeq ($(DEBUG), 1)
COPT = -O0 COPT = -O0
else else
#CFLAGS += -fdata-sections -ffunction-sections #CFLAGS += -fdata-sections -ffunction-sections

View File

@ -35,3 +35,6 @@ CONFIG_PPP_CHAP_SUPPORT=y
CONFIG_LOG_BOOTLOADER_LEVEL_WARN=y CONFIG_LOG_BOOTLOADER_LEVEL_WARN=y
CONFIG_SUPPORT_STATIC_ALLOCATION=y CONFIG_SUPPORT_STATIC_ALLOCATION=y
CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK=y CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK=y
# Logs
CONFIG_LOG_DEFAULT_LEVEL_WARN=y