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.
1 parent 4f52554 commit 91e530dCopy full SHA for 91e530d
ports/esp32s2/common-hal/alarm/pin/PinAlarm.c
@@ -152,7 +152,7 @@ static uint64_t high_alarms = 0;
152
static uint64_t low_alarms = 0;
153
static uint64_t pull_pins = 0;
154
155
-void alarm_pin_pinalarm_reset_alarms(void) {
+void alarm_pin_pinalarm_reset(void) {
156
if (gpio_interrupt_handle != NULL) {
157
esp_intr_free(gpio_interrupt_handle);
158
gpio_interrupt_handle = NULL;
ports/stm/common-hal/alarm/__init__.c
@@ -161,5 +161,5 @@ void NORETURN common_hal_alarm_enter_deep_sleep(void) {
161
}
162
163
void common_hal_alarm_gc_collect(void) {
164
- gc_collect_ptr(common_hal_alarm_get_wake_alarm());
+ gc_collect_ptr(shared_alarm_get_wake_alarm());
165
0 commit comments