diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-11-29 12:23:05 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-11-29 19:14:31 (GMT) |
| commit | 233c136a5c5f1fd4fc940400bc80951c76828811 (patch) | |
| tree | 50dec3c9f128e36f7c1c4cf6d386bcbb8630d4e8 /wasp/boards/simulator | |
| parent | 39c9344b14e22822845254445f35ff598e702fda (diff) | |
apps: alarm: Add the alarm app to the library
Like the other library applications this is enabled in the simulator and
included in the flash image but is disabled by default to conserve RAM
(and to give time to new apps to mature and receive improvements).
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/boards/simulator')
| -rw-r--r-- | wasp/boards/simulator/main.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wasp/boards/simulator/main.py b/wasp/boards/simulator/main.py index eee57d4..fb7698b 100644 --- a/wasp/boards/simulator/main.py +++ b/wasp/boards/simulator/main.py @@ -3,6 +3,9 @@ import wasp +from apps.alarm import AlarmApp +wasp.system.register(AlarmApp()) + from apps.fibonacci_clock import FibonacciClockApp wasp.system.register(FibonacciClockApp()) |
