Skip to content

Commit 07b3eb4

Browse files
committed
added printConfig()
1 parent 178243e commit 07b3eb4

File tree

9 files changed

+8
-2
lines changed

9 files changed

+8
-2
lines changed

.github/workflows/arduino.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- name: Compile examples
1818
uses: arduino/compile-sketches@v1
1919
with:
20-
#github-token: ${{ secrets.GITHUB_TOKEN }}
2120
fqbn: esp32:esp32:esp32
2221
platforms: |
2322
- name: esp32:esp32

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

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

7576
setup_wifi();
7677
}

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

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

7576
setup_wifi();
7677
}

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

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

7475
setup_wifi();
7576
}

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

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

8384
setup_wifi();
8485
}

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

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

8081
setup_wifi();
8182
}

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

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

8384
setup_wifi();
8485

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

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

7980
setup_wifi();
8081
}

src/debug/test_fota_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ extern int firmware_version_minor;
66
extern int firmware_version_patch;
77

88
#if !defined FOTA_URL
9-
#define FOTA_URL "http://server/fota/fota.json"
9+
#define FOTA_URL "http://phpsecu.re/esp32/esp32fota/firmware.json"
1010
#endif
1111

1212
extern const char* firmware_name;

0 commit comments

Comments
 (0)