-
Notifications
You must be signed in to change notification settings - Fork 29
Description
Hello everyone,
I've encountered an issue while using the Espressif32 platform in the Tasmota project. I noticed that this problem arises when I reference the latest version of the platform: platform-espressif32.zip. During my attempt to resolve the issue, I initiated a discussion on the issues page of the platformio/platform-espressif32 project, but later realized that this might not be the correct place.
@Jason2866 suggested that I submit the issue on the issues page of the espressif/arduino-esp32 project, but when I tried to reproduce the problem with the latest Arduino ESP32 releases, I was unsuccessful. Unfortunately, it seems like this issue is more related to Tasmota's platform-espressif32 project.
I would appreciate some guidance on whether it is suitable to initiate a discussion regarding this issue on the platform-espressif32 project page of Tasmota, as I am uncertain about the appropriateness of doing so here. Your insights would be valuable.
Problem description
The latest version of the Tasmota branch.
platform = https://github.com/tasmota/platform-espressif32/releases/download/2024.01.00/platform-espressif32.zip
"After customizing the serial Rx pin, data reception is not working properly. Below is the minimal code that reproduces the issue."
Esp32C3_dev_pio_Serial_test.zip
#include <Arduino.h>
void setup() {
Serial.begin(921600, SERIAL_8N1, 5, 4); // Rx = 5, Tx = 4
Serial.print("READY\n\r");
}
void loop() {
if (Serial.available()) {
Serial.write(Serial.read());
}
}
[env:esp32-c3-devkitm-1]
; platform = espressif32
platform = https://github.com/tasmota/platform-espressif32/releases/download/2024.01.00/platform-espressif32.zip
board = esp32-c3-devkitm-1
framework = arduino
; change microcontroller
board_build.mcu = esp32c3
board_build.flash_mode = dio
; change MCU frequency
board_build.f_cpu = 160000000L
upload_protocol = esptool
; build_flags =
; -D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
; -D CONFIG_ARDUHAL_LOG_COLORS=1
; -D CONFIG_LWIP_IP_FORWARD=1
; -D CONFIG_LWIP_IPV4_NAPT=1
; -D CONFIG_LWIP_L2_TO_L3_COPY=1
; -D ARDUINO_USB_CDC_ON_BOOT=0
; -D ARDUINO_USB_MODE=0
; ; -D USE_UDP_LOG
; -DUSE_ESP_IDF_LOG -DLOG_LOCAL_LEVEL=5 -DTAG="\"ARDUINO\"" -DCONFIG_LOG_COLORS
debug_server =
${platformio.packages_dir}/tool-openocd-esp32/bin/openocd
-f
${platformio.packages_dir}/tool-openocd-esp32/share/openocd/scripts/board/esp32c3-builtin.cfg
build_type = release
monitor_filters = esp32_exception_decoder
debug_tool = esp-builtin
upload_port = COM20
monitor_port = COM20
board_build.partitions = default.csv
board_build.filesystem = littlefs
monitor_speed = 115200
monitor_rts = 0
monitor_dtr = 0
The purpose of this code is to print the data received from the serial port, but it doesn't work properly in this plaofmtio version.
I might not be very familiar with the GitHub platform and the upstream-downstream relationships within the Tasmota project. If any mistakes exist, I kindly request your understanding.Additionally, I'd like to mention that my attempt to raise issues on GitHub has been largely guided by assistance from ChatGPT, and as a result, there might be procedural errors.