You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
429 B
C
21 lines
429 B
C
/* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "esp_system.h"
|
|
#include "esp_log.h"
|
|
#include "lvgl.h"
|
|
#include "esp_tinyuf2.h"
|
|
|
|
static char *TAG = "NVS: ui-events";
|
|
|
|
void EventBtnSetupClick(lv_event_t *e)
|
|
{
|
|
ESP_LOGI(TAG, "btn click!");
|
|
// Configure USB PHY, Change back to USB-Serial-Jtag
|
|
|
|
esp_tinyuf2_uninstall();
|
|
esp_restart();
|
|
}
|