summaryrefslogtreecommitdiff
path: root/wasp/boards/p8/manifest.py
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-07-27 21:15:42 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-07-27 21:15:42 (GMT)
commit13b35611e23df582ab86b8ae0ba95ccf33ae562f (patch)
tree1931f4deb0ea7c172ef8daf1a8087c9d3a9c6c84 /wasp/boards/p8/manifest.py
parentb4e78935baf2696dac62353c27b91ad38db373f1 (diff)
boards: p8: Full support for Colmi P8
All the components (bootloader, reloader, micropython) has P8 support added some time back but without full integration at the wasp-os level. Let's add it! Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/boards/p8/manifest.py')
-rw-r--r--wasp/boards/p8/manifest.py45
1 files changed, 45 insertions, 0 deletions
diff --git a/wasp/boards/p8/manifest.py b/wasp/boards/p8/manifest.py
new file mode 100644
index 0000000..3a525e1
--- /dev/null
+++ b/wasp/boards/p8/manifest.py
@@ -0,0 +1,45 @@
+# SPDX-License-Identifier: LGPL-3.0-or-later
+# Copyright (C) 2020 Daniel Thompson
+
+freeze('.', 'watch.py', opt=3)
+freeze('../..',
+ (
+ 'apps/clock.py',
+ 'apps/flashlight.py',
+ 'apps/heart.py',
+ 'apps/launcher.py',
+ 'apps/pager.py',
+ 'apps/settings.py',
+ 'apps/steps.py',
+ 'apps/stopwatch.py',
+ 'apps/testapp.py',
+ 'boot.py',
+ 'draw565.py',
+ 'drivers/bma421.py',
+ 'drivers/battery.py',
+ 'drivers/cst816s.py',
+ 'drivers/hrs3300.py',
+ 'drivers/nrf_rtc.py',
+ 'drivers/signal.py',
+ 'drivers/st7789.py',
+ 'drivers/vibrator.py',
+ 'fonts/__init__.py',
+ 'fonts/clock.py',
+ 'fonts/sans24.py',
+ 'fonts/sans28.py',
+ 'fonts/sans36.py',
+ 'gadgetbridge.py',
+ 'icons.py',
+ 'ppg.py',
+ 'shell.py',
+ 'wasp.py',
+ 'widgets.py',
+ ),
+ opt=3
+)
+freeze('../../drivers/flash',
+ (
+ 'bdevice.py',
+ 'flash/flash_spi.py'
+ ), opt=3
+)