Search found 2 matches
- Sun Mar 19, 2023 2:25 am
- Forum: ESP-IDF
- Topic: UART sending over printf statements along with standard uart_write_bytes data.
- Replies: 1
- Views: 1395
Re: UART sending over printf statements along with standard uart_write_bytes data.
SOLUTION Hi all I'd like to make my first contribution to this board so first i'd like to say if you encounter a problem don't give in look around. The simple solution here as has been the case with many of my ESP32 issues was switching UART0 TO UART2, :( upsetting wish I would have known this befo...
- Fri Mar 17, 2023 4:27 am
- Forum: ESP-IDF
- Topic: UART sending over printf statements along with standard uart_write_bytes data.
- Replies: 1
- Views: 1395
UART sending over printf statements along with standard uart_write_bytes data.
TX UART CODE #include "freertos/FreeRTOS.h" /*Standard Headers*/ //#include "esp_wifi.h" #include "esp_system.h" #include "esp_event.h" #include "esp_event_loop.h" #include "nvs_flash.h" #include "driver/gpio.h" /*Added by Me*/ #include "esp_log.h" #include <stdio.h> #include "string.h" #include <f...