ESP-IDF will support many SoCs as follows ESP32, ESP32-S, ESP32-C, and ESP32-H.
What is the Abbarivation of ESP32?
The abbreviation “ESP32” stands for “Espressif System Platform 32,” which refers to a series of low-cost, low-power system-on-chip microcontrollers developed by Espressif Systems
What is the abbreviation of ESP-IDF?
- ESPressif IoT Development Framework
NEXT Post
- ESP32 IDF Get Started
Feature Contents
How to restart the ESP32 in IDF?
Use the esp_restart() function from the ESP-IDF API. This function restarts the device same like pressing the reset button.
- You must include the
#include "esp_system.h"of ESP-IDF API. - Call the
#include "esp_system.h"
void app_main(void)
{
printf("ArunEworld: ESP restarting..\n\r\n\r");
esp_restart();
}