1
0

Fix warnings
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-11-10 10:19:03 +00:00
parent 5a6d60eee0
commit 50160cc0b4
5 changed files with 47 additions and 13 deletions

View File

@ -67,4 +67,20 @@ void loop()
String input = Serial.readStringUntil('\n');
cmd_handler.parseJSON(input.c_str());
}
}
/**
* @brief Wrapper around arduino setup/loop functions
*
* This mitigates static code analysis warnings.
*
* @return int
*/
int main()
{
setup();
while(1)
{
loop();
}
}