diff options
| author | Francesco Gazzetta <fgaz@fgaz.me> | 2021-11-24 19:06:08 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel.thompson@linaro.org> | 2021-12-26 21:25:07 (GMT) |
| commit | b8a50db03c1f7655b846c59d6903e27d54bd82ae (patch) | |
| tree | 16744731ecde42a03e228cc0b940499a5723f67f /wasp/boards/simulator/machine.py | |
| parent | 5c714ea075c638b37576939403a6727e60ee752e (diff) | |
Add DisaBLE app that disables bluetooth
Signed-off-by: Francesco Gazzetta <fgaz@fgaz.me>
Diffstat (limited to 'wasp/boards/simulator/machine.py')
| -rw-r--r-- | wasp/boards/simulator/machine.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wasp/boards/simulator/machine.py b/wasp/boards/simulator/machine.py index 891b635..9596c0a 100644 --- a/wasp/boards/simulator/machine.py +++ b/wasp/boards/simulator/machine.py @@ -130,3 +130,8 @@ def lightsleep(ms=10): def deepsleep(ms=10): lightsleep(ms) + +def reset(): + # We don't simulate an actual watch reset, but it should be enough for what + # we want to test + print("RESET") |
