Skip to content

Commit

Permalink
network.cpp: fix ProvisionCli call
Browse files Browse the repository at this point in the history
  • Loading branch information
dingo35 committed Oct 22, 2024
1 parent 5f391d1 commit 15c724f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion SmartEVSE-3/src/network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,12 @@ static uint8_t CliState = 0;
void ProvisionCli(HardwareSerial &s) {
//void ProvisionCli(HardwareSerial &s = &Serial) {
#else
#if SMARTEVSE_VERSION == 3
void ProvisionCli(void) {
HardwareSerial &s = Serial;
//void ProvisionCli(HWCDC &s = &Serial) {
#else
void ProvisionCli(HWCDC &s = Serial) {
#endif
#endif
// SSID and PW for your Router
static String Router_SSID, Router_Pass;
Expand Down

0 comments on commit 15c724f

Please sign in to comment.