Skip to content

Commit

Permalink
Fix SITL build (betaflight#13972)
Browse files Browse the repository at this point in the history
* Fix SITL build

* Remove semicolons
  • Loading branch information
haslinghuis authored Oct 22, 2024
1 parent d5f8991 commit a17d8c6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/platform/SITL/sitl.c
Original file line number Diff line number Diff line change
Expand Up @@ -748,3 +748,13 @@ void unusedPinsInit(void)
{
printf("unusedPinsInit\n");
}

void IOHi(IO_t io)
{
UNUSED(io);
}

void IOLo(IO_t io)
{
UNUSED(io);
}

0 comments on commit a17d8c6

Please sign in to comment.