boards: spinx: Fix the documentation generation
Currently the template app documentation will not generate. Fix that! Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
This commit is contained in:
parent
95e129e331
commit
eb8dfcc57c
1 changed files with 5 additions and 0 deletions
|
@ -46,8 +46,13 @@ def sleep_ms(ms):
|
||||||
time.sleep(ms / 1000)
|
time.sleep(ms / 1000)
|
||||||
time.sleep_ms = sleep_ms
|
time.sleep_ms = sleep_ms
|
||||||
|
|
||||||
|
class Accel():
|
||||||
|
def reset(self):
|
||||||
|
pass
|
||||||
|
|
||||||
class Pin():
|
class Pin():
|
||||||
def value(v=None):
|
def value(v=None):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
accel = Accel()
|
||||||
button = Pin()
|
button = Pin()
|
||||||
|
|
Loading…
Reference in a new issue