We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df067b4 + add230b commit 9f892cdCopy full SHA for 9f892cd
ports/esp32s2/supervisor/port.c
@@ -43,6 +43,7 @@
43
#include "common-hal/wifi/__init__.h"
44
#include "supervisor/memory.h"
45
#include "supervisor/shared/tick.h"
46
+#include "shared-bindings/rtc/__init__.h"
47
48
#include "peripherals/rmt.h"
49
#include "esp-idf/components/heap/include/esp_heap_caps.h"
@@ -106,6 +107,11 @@ void reset_port(void) {
106
107
spi_reset();
108
uart_reset();
109
#endif
110
+
111
+#if CIRCUITPY_RTC
112
+ rtc_reset();
113
+#endif
114
115
#if CIRCUITPY_WIFI
116
wifi_reset();
117
0 commit comments