wasp-os/wasp/boards/k9/manifest.py
Daniel Thompson 2d1942f76a k9: Add support for Senbono K9
The K9 is similar to the PineTime and P8 devices but does not appear
to use the CST[78]16 touch screen controllers. At present the protocol
is not known (readfrom yields all zeros, readfrom_mem provokes an
exception) so we have a hugely limited interface consisting of the side
button and the touchscreen interrupts (in other words we can treat the
touchscreen like a second button).

Works suprisingly well considering...

Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
2020-08-09 20:06:45 +01:00

46 lines
1 KiB
Python

# 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/hrs3300.py',
'drivers/nrf_rtc.py',
'drivers/signal.py',
'drivers/st7789.py',
'drivers/touch.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
)