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:
Daniel Thompson 2020-06-25 22:08:02 +01:00
parent 95e129e331
commit eb8dfcc57c

View file

@ -46,8 +46,13 @@ def sleep_ms(ms):
time.sleep(ms / 1000)
time.sleep_ms = sleep_ms
class Accel():
def reset(self):
pass
class Pin():
def value(v=None):
pass
accel = Accel()
button = Pin()