wasp-os/wasp/boards/pinetime/manifest.py
Daniel Thompson f8bd1a7461 Rename manager.py and expose its interfaces to all applications
This is a big change that break compatiblity with existing applications
*and* with existing installed versions of main.py.

When upgrading it is import to update main.py:

    ./tools/wasptool --upload wasp/main.py
2020-03-22 12:37:19 +00:00

32 lines
648 B
Python

freeze('.', 'watch.py', opt=3)
freeze('../..',
(
'apps/clock.py',
'apps/testapp.py',
'apps/flashlight.py',
'boot.py',
'demo.py',
'draw565.py',
'drivers/battery.py',
'drivers/cst816s.py',
'drivers/nrf_rtc.py',
'drivers/signal.py',
'drivers/st7789.py',
'drivers/vibrator.py',
'fonts/clock.py',
'fonts/sans24.py',
'icons.py',
'logo.py',
'shell.py',
'wasp.py',
'widgets.py',
),
opt=3
)
freeze('../../drivers/flash',
(
'bdevice.py',
'flash/flash_spi.py'
), opt=3
)