|
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 def 'micropython' module. |
|
8 """ |
|
9 |
|
10 def const(expr): |
|
11 pass |
|
12 |
|
13 def opt_level(level=None): |
|
14 pass |
|
15 |
|
16 def alloc_emergency_exception_buf(size): |
|
17 pass |
|
18 |
|
19 def mem_info(verbose=False): |
|
20 pass |
|
21 |
|
22 def qstr_info(verbose=False): |
|
23 pass |
|
24 |
|
25 def stack_use(): |
|
26 pass |
|
27 |
|
28 def heap_lock(): |
|
29 pass |
|
30 |
|
31 def heap_unlock(): |
|
32 pass |
|
33 |
|
34 def kbd_intr(chr): |
|
35 pass |
|
36 |
|
37 def schedule(func, arg): |
|
38 pass |