1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 19:40:31 +03:00

Fix SITL build (#13972)

* Fix SITL build

* Remove semicolons
This commit is contained in:
Mark Haslinghuis 2024-10-22 20:10:02 +02:00 committed by GitHub
parent d5f899156d
commit a17d8c69d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -748,3 +748,13 @@ void unusedPinsInit(void)
{ {
printf("unusedPinsInit\n"); printf("unusedPinsInit\n");
} }
void IOHi(IO_t io)
{
UNUSED(io);
}
void IOLo(IO_t io)
{
UNUSED(io);
}