Include the gallery app in micropython.zip
...and move GameOfLife out to make space The gallery app needs too much memory to run from bytecode, and has to be frozen in micropython.zip instead Signed-off-by: Francesco Gazzetta <fgaz@fgaz.me>
This commit is contained in:
parent
61d9dbce7c
commit
a956b3efe5
6 changed files with 5 additions and 5 deletions
|
@ -53,7 +53,7 @@ Applications
|
|||
|
||||
.. automodule:: apps.flashlight
|
||||
|
||||
.. automodule:: Gallery
|
||||
.. automodule:: apps.gallery
|
||||
|
||||
.. automodule:: apps.haiku
|
||||
|
||||
|
@ -72,7 +72,7 @@ Applications
|
|||
Games
|
||||
-----
|
||||
|
||||
.. automodule:: apps.gameoflife
|
||||
.. automodule:: GameOfLife
|
||||
|
||||
.. automodule:: apps.play2048
|
||||
|
||||
|
|
|
@ -10,4 +10,4 @@ wasp.system.schedule()
|
|||
# watch will still (partially) boot even if we end up taking
|
||||
# an exception during application init.
|
||||
wasp.system.register('apps.flashlight.TorchApp')
|
||||
wasp.system.register('apps.gameoflife.GameOfLifeApp')
|
||||
wasp.system.register('apps.gallery.GalleryApp')
|
||||
|
|
|
@ -43,7 +43,7 @@ class SoftwareApp():
|
|||
db.append(('calc', factory('Calculator')))
|
||||
db.append(('disaBLE', factory('DisaBLE')))
|
||||
db.append(('faces', factory('Faces')))
|
||||
db.append(('gameoflife', factory('Game Of Life')))
|
||||
db.append(('gallery', factory('Gallery')))
|
||||
db.append(('musicplayer', factory('Music Player')))
|
||||
db.append(('play2048', factory('Play 2048')))
|
||||
db.append(('snake', factory('Snake Game')))
|
||||
|
|
|
@ -12,7 +12,7 @@ manifest = (
|
|||
'apps/faces.py',
|
||||
'apps/fibonacci_clock.py',
|
||||
'apps/flashlight.py',
|
||||
'apps/gameoflife.py',
|
||||
'apps/gallery.py',
|
||||
'apps/haiku.py',
|
||||
'apps/heart.py',
|
||||
'apps/musicplayer.py',
|
||||
|
|
Loading…
Reference in a new issue