Skip to content

Commit

Permalink
ocpp: Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
photron committed Oct 28, 2024
1 parent a020322 commit b8fcaba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions software/src/modules/ocpp/ESP32Platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ void *platform_init(const char *websocket_url, BasicAuthCredentials *credentials
if (network.connected) {
tf_websocket_client_start(client);
client_running = true;
)
}

return client;
}
Expand Down Expand Up @@ -189,7 +189,7 @@ void platform_reconnect(void *ctx)
if (network.connected) {
tf_websocket_client_start(client);
client_running = true;
)
}
}

void platform_destroy(void *ctx)
Expand Down

0 comments on commit b8fcaba

Please sign in to comment.