fw: drivers: add AS7000 HRM driver code/demo app

This commit is contained in:
Liam McLoughlin 2025-02-13 11:40:38 +00:00
parent f19ace2e3c
commit 5b5d49cb49
15 changed files with 1809 additions and 6 deletions

View file

@ -140,7 +140,12 @@ def has_touch(ctx):
@conf
def get_hrm(ctx):
return None
if is_robert(ctx):
return "AS7000"
elif is_silk(ctx):
return "AS7000"
else:
return None
@conf