diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-02-09 19:49:52 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-02-09 19:49:52 (GMT) |
| commit | b2c5b482d5eaba86441c7c68fefc787cd8076821 (patch) | |
| tree | 4c8695173ef261e015872a523370eb8f378d1432 /wasp/boards/pinetime/manifest.py | |
| parent | 3bc59b1c71db1f73d16655c41a5ebc3340882f75 (diff) | |
wasp: pinetime: Enable filesystem support
Diffstat (limited to 'wasp/boards/pinetime/manifest.py')
| -rw-r--r-- | wasp/boards/pinetime/manifest.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/wasp/boards/pinetime/manifest.py b/wasp/boards/pinetime/manifest.py index d292ba4..46016c8 100644 --- a/wasp/boards/pinetime/manifest.py +++ b/wasp/boards/pinetime/manifest.py @@ -1,3 +1,4 @@ +freeze('.', 'watch.py', opt=3) freeze('../..', ( 'boot.py', @@ -10,11 +11,15 @@ freeze('../..', 'drivers/vibrator.py', 'fonts.py', 'icons.py', - 'main.py', 'manager.py', 'logo.py', 'widgets.py', ), opt=3 ) -freeze('.', 'watch.py', opt=3) +freeze('../../drivers/flash', + ( + 'bdevice.py', + 'flash/flash_spi.py' + ), opt=3 +) |
