Skip to content

Commit 9c048a9

Browse files
authored
Merge branch 'arduino:main' into add-ping-command
2 parents d81171e + 8a0bbaa commit 9c048a9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

libraries/RTC/src/RTC.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,11 @@ void __attribute__((weak)) rtc_callback(rtc_callback_args_t *p_args) {
435435

436436
rtc_instance_ctrl_t rtc_ctrl = {
437437
.open = 0,
438+
.p_cfg = nullptr,
439+
.carry_isr_triggered = false,
440+
.p_callback = nullptr,
441+
.p_callback_memory = nullptr,
442+
.p_context = nullptr,
438443
};
439444

440445
#ifndef RTC_CLOCK_SOURCE
@@ -458,6 +463,7 @@ rtc_cfg_t rtc_cfg = {
458463
.carry_irq = FSP_INVALID_VECTOR,
459464
.p_callback = rtc_callback,
460465
.p_context = NULL,
466+
.p_extend = NULL,
461467
};
462468

463469
#ifdef __cplusplus

libraries/WiFiS3/src/WiFi.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#define DEFAULT_GW_AP_ADDRESS IPAddress(192,168,1,1)
1818
#define DEFAULT_NM_AP_ADDRESS IPAddress(255,255,255,0)
1919

20-
#define WIFI_FIRMWARE_LATEST_VERSION "0.4.1"
20+
#define WIFI_FIRMWARE_LATEST_VERSION "0.5.2"
2121

2222
class CAccessPoint {
2323
public:

0 commit comments

Comments
 (0)