Skip to content

Commit 58572b3

Browse files
committed
[ESP32] Do not delete default event loop
The PlatformManagerImpl::_InitChipStack() does not create default event loop, so the PlatformManagerImpl::_Shutdown() shall not delete it.
1 parent dc980b8 commit 58572b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platform/ESP32/PlatformManagerImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void PlatformManagerImpl::_Shutdown()
107107

108108
Internal::GenericPlatformManagerImpl_FreeRTOS<PlatformManagerImpl>::_Shutdown();
109109

110-
esp_event_loop_delete_default();
110+
esp_event_handler_unregister(IP_EVENT, ESP_EVENT_ANY_ID, PlatformManagerImpl::HandleESPSystemEvent);
111111
}
112112

113113
void PlatformManagerImpl::HandleESPSystemEvent(void * arg, esp_event_base_t eventBase, int32_t eventId, void * eventData)

0 commit comments

Comments
 (0)