Skip to content

Commit

Permalink
added printConfig()
Browse files Browse the repository at this point in the history
  • Loading branch information
tobozo committed Dec 10, 2022
1 parent 7fa8e81 commit 744c362
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/anyFS/test/1.1.nosecurity/1.1.nosecurity.ino
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void setup()
//cfg.pub_key = MyRSAKey;
FOTA.setConfig( cfg );
}
esp32FOTA.printConfig();
FOTA.printConfig();

setup_wifi();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void setup()
//cfg.pub_key = MyRSAKey;
FOTA.setConfig( cfg );
}
esp32FOTA.printConfig();
FOTA.printConfig();

setup_wifi();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void setup()
//cfg.pub_key = MyRSAKey;
FOTA.setConfig( cfg );
}
esp32FOTA.printConfig();
FOTA.printConfig();

setup_wifi();
}
Expand Down
2 changes: 1 addition & 1 deletion examples/anyFS/test/2.cert-in-spiffs/2.cert-in-spiffs.ino
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void setup()
//cfg.pub_key = MyRSAKey;
FOTA.setConfig( cfg );
}
esp32FOTA.printConfig();
FOTA.printConfig();

setup_wifi();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void setup()
//cfg.pub_key = MyRSAKey;
FOTA.setConfig( cfg );
}
esp32FOTA.printConfig();
FOTA.printConfig();

setup_wifi();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void setup()
cfg.pub_key = MyRSAKey;
FOTA.setConfig( cfg );
}
esp32FOTA.printConfig();
FOTA.printConfig();

setup_wifi();

Expand Down
2 changes: 1 addition & 1 deletion examples/anyFS/test/5.sig-in-progmem/5.sig-in-progmem.ino
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void setup()
cfg.pub_key = MyRSAKey;
FOTA.setConfig( cfg );
}
esp32FOTA.printConfig();
FOTA.printConfig();

setup_wifi();
}
Expand Down

0 comments on commit 744c362

Please sign in to comment.