diff --git a/Makefile b/Makefile index 2954ad3..f2890ee 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,10 @@ export PYTHONPATH := $(PWD)/tools/nrfutil:$(PWD)/tools/intelhex:$(PYTHONPATH) PYTHON ?= python3 PYTEST ?= pytest-3 +# Disable debugging to save some space +DEBUG ?= 0 +CFLAGS_EXTRA ?= -Wno-error=incompatible-pointer-types + all : bootloader reloader micropython # If BOARD is undefined then set it up so that expanding it issues an @@ -67,6 +71,7 @@ micropython: build-$(BOARD_SAFE) wasp/boards/$(BOARD_SAFE)/watch.py micropython/ BOARD=$(BOARD) SD=s132 \ MICROPY_VFS_LFS2=1 \ FROZEN_MANIFEST=$(PWD)/wasp/boards/$(BOARD)/manifest.py \ + DEBUG=$(DEBUG) CFLAGS_EXTRA=$(CFLAGS_EXTRA) \ USER_C_MODULES=$(PWD)/wasp/modules $(PYTHON) -m nordicsemi dfu genpkg \ --dev-type 0x0052 \ diff --git a/wasp/boards/manifest_240x240.py b/wasp/boards/manifest_240x240.py index 1c8a9b5..b6159c4 100644 --- a/wasp/boards/manifest_240x240.py +++ b/wasp/boards/manifest_240x240.py @@ -30,6 +30,5 @@ manifest = ( 'fonts/sans28.py', 'fonts/sans36.py', 'icons.py', - 'steplogger.py', 'widgets.py', ) diff --git a/wasp/wasp.py b/wasp/wasp.py index d3a1a8d..fbb2f4f 100644 --- a/wasp/wasp.py +++ b/wasp/wasp.py @@ -17,7 +17,6 @@ import gc import machine import micropython -import steplogger import sys import watch import widgets