Skip to content

Commit c62e19f

Browse files
authored
Merge pull request espressif#275 from cdollar393/fix/lvgl-port-deinit-fix
esp_lvgl_port: Fix bad condition in port deinit (BSP-440)
2 parents 1a1bd4b + 1fa23e3 commit c62e19f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/esp_lvgl_port/esp_lvgl_port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ esp_err_t lvgl_port_deinit(void)
237237
}
238238

239239
/* Stop running task */
240-
if (!lvgl_port_ctx.running) {
240+
if (lvgl_port_ctx.running) {
241241
lvgl_port_ctx.running = false;
242242
} else {
243243
lvgl_port_task_deinit();

0 commit comments

Comments
 (0)