summaryrefslogtreecommitdiff
path: root/wasp/boards/pinetime
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-04-14 19:03:04 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-04-14 19:03:04 (GMT)
commit10706a9704fc75dac2e623341652b8b6f1fdf23f (patch)
tree8c555ddfcdec04fd9f7b93f1f6b647efb2999902 /wasp/boards/pinetime
parent5fc802fb786d8122bd4ae0dbe6e400d4b43dbd32 (diff)
wasp: stopwatch: Replace the stub with a "real" implementation
There are still some holes here. In particular the RTC resolution on nRF devices (such as PineTime) is currently a full second (meaning the centiseconds will always be zero. Nevertheless that isn't the apps fault... as we can see when we run on the simulator.
Diffstat (limited to 'wasp/boards/pinetime')
-rw-r--r--wasp/boards/pinetime/manifest.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/wasp/boards/pinetime/manifest.py b/wasp/boards/pinetime/manifest.py
index d22f360..97641d6 100644
--- a/wasp/boards/pinetime/manifest.py
+++ b/wasp/boards/pinetime/manifest.py
@@ -4,11 +4,13 @@
freeze('.', 'watch.py', opt=3)
freeze('../..',
(
+ 'apps/__init__.py',
'apps/clock.py',
'apps/flashlight.py',
'apps/launcher.py',
'apps/pager.py',
'apps/settings.py',
+ 'apps/stopwatch.py',
'apps/testapp.py',
'boot.py',
'demo.py',
@@ -19,8 +21,10 @@ freeze('../..',
'drivers/signal.py',
'drivers/st7789.py',
'drivers/vibrator.py',
+ 'fonts/__init__.py',
'fonts/clock.py',
'fonts/sans24.py',
+ 'fonts/sans36.py',
'icons.py',
'logo.py',
'shell.py',