diff --git a/Makefile b/Makefile index f2890ee..2954ad3 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,6 @@ 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 @@ -71,7 +67,6 @@ 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 b6159c4..1c8a9b5 100644 --- a/wasp/boards/manifest_240x240.py +++ b/wasp/boards/manifest_240x240.py @@ -30,5 +30,6 @@ manifest = ( 'fonts/sans28.py', 'fonts/sans36.py', 'icons.py', + 'steplogger.py', 'widgets.py', ) diff --git a/wasp/wasp.py b/wasp/wasp.py index fbb2f4f..d3a1a8d 100644 --- a/wasp/wasp.py +++ b/wasp/wasp.py @@ -17,6 +17,7 @@ import gc import machine import micropython +import steplogger import sys import watch import widgets