Search found 2 matches

by sumit809
Mon Jul 27, 2020 7:53 pm
Forum: Hardware
Topic: ESP32-S2 Flash
Replies: 1
Views: 2025

ESP32-S2 Flash

I'm using new ESP32-S2 for my next design. My main MCU will be communicating with ESP32-S2 via UART using AT Commands. In the hardware design guidelines, it is written that the SPI Flash is Compulsory (PFA). So my question is, since I will be communicating using AT commands and will not be loading c...
by sumit809
Tue Feb 25, 2020 7:58 am
Forum: ESP-IDF
Topic: ESP-IDF crashes while sending more than 128bytes via UART1 using uart_write_bytes() function
Replies: 1
Views: 2452

ESP-IDF crashes while sending more than 128bytes via UART1 using uart_write_bytes() function

/* UART Interrupt Example */ #include <stdio.h> #include <string.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/queue.h" #include "driver/uart.h" #include "esp_log.h" #include "driver/gpio.h" #include "sdkconfig.h" #include "esp_intr_alloc.h" #include "esp_wifi.h" #...