Skip to content

Commit 744c362

Browse files
committed
added printConfig()
1 parent 7fa8e81 commit 744c362

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

examples/anyFS/test/1.1.nosecurity/1.1.nosecurity.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void setup()
7171
//cfg.pub_key = MyRSAKey;
7272
FOTA.setConfig( cfg );
7373
}
74-
esp32FOTA.printConfig();
74+
FOTA.printConfig();
7575

7676
setup_wifi();
7777
}

examples/anyFS/test/1.2.nosecurity.gz/1.2.nosecurity.gz.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void setup()
7171
//cfg.pub_key = MyRSAKey;
7272
FOTA.setConfig( cfg );
7373
}
74-
esp32FOTA.printConfig();
74+
FOTA.printConfig();
7575

7676
setup_wifi();
7777
}

examples/anyFS/test/1.3.nosecurity.zz/1.3.nosecurity.zz.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ void setup()
7070
//cfg.pub_key = MyRSAKey;
7171
FOTA.setConfig( cfg );
7272
}
73-
esp32FOTA.printConfig();
73+
FOTA.printConfig();
7474

7575
setup_wifi();
7676
}

examples/anyFS/test/2.cert-in-spiffs/2.cert-in-spiffs.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ void setup()
7979
//cfg.pub_key = MyRSAKey;
8080
FOTA.setConfig( cfg );
8181
}
82-
esp32FOTA.printConfig();
82+
FOTA.printConfig();
8383

8484
setup_wifi();
8585
}

examples/anyFS/test/3.cert-in-progmem/3.cert-in-progmem.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ void setup()
7676
//cfg.pub_key = MyRSAKey;
7777
FOTA.setConfig( cfg );
7878
}
79-
esp32FOTA.printConfig();
79+
FOTA.printConfig();
8080

8181
setup_wifi();
8282
}

examples/anyFS/test/4.cert-in-littlefs/4.cert-in-littlefs.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ void setup()
7979
cfg.pub_key = MyRSAKey;
8080
FOTA.setConfig( cfg );
8181
}
82-
esp32FOTA.printConfig();
82+
FOTA.printConfig();
8383

8484
setup_wifi();
8585

examples/anyFS/test/5.sig-in-progmem/5.sig-in-progmem.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void setup()
7575
cfg.pub_key = MyRSAKey;
7676
FOTA.setConfig( cfg );
7777
}
78-
esp32FOTA.printConfig();
78+
FOTA.printConfig();
7979

8080
setup_wifi();
8181
}

0 commit comments

Comments
 (0)