6:81a2208f13e4 | 7:e336d6afc5a6 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 | |
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> | |
4 # | |
5 | |
6 """ | |
7 Module containing stubs for API generation of the 'supervisor' module. | |
8 """ | |
9 | |
10 class Runtime(): | |
11 serial_connected = 0 | |
12 serial_bytes_available = 0 | |
13 | |
14 runtime = Runtime() | |
15 | |
16 def enable_autoreload(): | |
17 pass | |
18 | |
19 def disable_autoreload(): | |
20 pass | |
21 | |
22 def set_rgb_status_brightness(): | |
23 pass | |
24 | |
25 def reload(): | |
26 pass | |
27 | |
28 def set_next_stack_limit(size): | |
29 pass |