uasyncio fixes

Remove -Wimplicit-fallthrough=0 option which is not recognized on older gcc compiler

Freeze async_utils.py on the unix port. Need to build the 'dev' variant in order to use uasyncio in unix

Update bindings with ili9xxx fixes and uasyncio example
This commit is contained in:
Amir Gonnen 2021-02-27 00:45:22 +02:00
parent 86f358338f
commit 0c86f69aca
3 changed files with 3 additions and 2 deletions

View File

@ -66,7 +66,7 @@ endif
LIB_SRC_C += $(SRC_BTSTACK)
# Suppress some warnings.
BTSTACK_WARNING_CFLAGS = -Wno-old-style-definition -Wno-unused-variable -Wno-unused-parameter -Wimplicit-fallthrough=0
BTSTACK_WARNING_CFLAGS = -Wno-old-style-definition -Wno-unused-variable -Wno-unused-parameter # -Wimplicit-fallthrough=0
ifneq ($(CC),clang)
BTSTACK_WARNING_CFLAGS += -Wno-format
endif

@ -1 +1 @@
Subproject commit 55de7683ba6aed3f88e61570e4441db57077b23b
Subproject commit b0f3b7ede698bb095512795315a9b93d03f62f2f

View File

@ -2,3 +2,4 @@ freeze_as_mpy('$(MPY_DIR)/tools', 'upip.py')
freeze_as_mpy('$(MPY_DIR)/tools', 'upip_utarfile.py', opt=3)
freeze('$(MPY_DIR)/lib/lv_bindings/driver/linux', 'evdev.py')
freeze('$(MPY_DIR)/lib/lv_bindings/lib', 'lv_colors.py')
freeze('$(MPY_DIR)/lib/lv_bindings/lib', 'async_utils.py')