Compare commits

...

2 Commits

Author SHA1 Message Date
Peter Cai 40c3928ce1 Disable debugging by default
Some issues with pointer conversion will be reported (due to a missing
macro call). For now, let's just set -Wno-error for that.
2022-06-15 21:32:12 -04:00
Peter Cai d31165106b Nuke steplogger entirely
I DONT NEED THIS AT ALL
2022-06-15 21:29:49 -04:00
3 changed files with 5 additions and 2 deletions

View File

@ -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 \

View File

@ -30,6 +30,5 @@ manifest = (
'fonts/sans28.py',
'fonts/sans36.py',
'icons.py',
'steplogger.py',
'widgets.py',
)

View File

@ -17,7 +17,6 @@
import gc
import machine
import micropython
import steplogger
import sys
import watch
import widgets