code style

This commit is contained in:
rusefillc 2024-06-08 21:45:20 -04:00
parent cf3b354377
commit c85113e80c
1 changed files with 4 additions and 4 deletions

View File

@ -165,7 +165,7 @@ static void writeEngineTypeDefaultConfig(engine_type_e type) {
writeSimulatorTune(fileName);
}
void rusEfiFunctionalTest(void) {
void rusEfiFunctionalTest() {
printToConsole("Running rusEFI simulator version:");
static char versionBuffer[20];
itoa10(versionBuffer, (int)getRusEfiVersion());
@ -243,7 +243,7 @@ void rusEfiFunctionalTest(void) {
main_loop_started = true;
}
void printPendingMessages(void) {
void printPendingMessages() {
updateDevConsoleState();
#if EFI_ENGINE_SNIFFER
waveChart.publishIfFull();
@ -252,11 +252,11 @@ void printPendingMessages(void) {
int isSerialOverTcpReady;
bool isCommandLineConsoleReady(void) {
bool isCommandLineConsoleReady() {
return isSerialOverTcpReady;
}
void applyNewConfiguration(void) {
void applyNewConfiguration() {
}
void onFatalError(const char *msg, const char * file, int line) {