Page 1 of 1

Flashing Firmware via microcontroller and UART.

Posted: Tue Apr 25, 2023 1:36 pm
by Aung Cho Oo
I connected my esp32-c3 module with my stm32 microcontroller via UART. My question is can I flash or upload my firmware through UART not USB because I already have USB for stm32 and it would be better if I can use just one USB for both stm32 and esp32.

Esp32-c3 is only used for wifi and bluetooth communication, I don't need for others GPIO pins to function.

Re: Flashing Firmware via microcontroller and UART.

Posted: Wed Apr 26, 2023 12:58 am
by ESP_Sprite
Yes, you can. Either program the STM as a passthrough device (so anything on the PC can talk to the ESP directly) or you can use esp-serial-flasher.

Re: Flashing Firmware via microcontroller and UART.

Posted: Wed Apr 26, 2023 12:50 pm
by Aung Cho Oo
ESP_Sprite wrote:
Wed Apr 26, 2023 12:58 am
Yes, you can. Either program the STM as a passthrough device (so anything on the PC can talk to the ESP directly) or you can use esp-serial-flasher.
Thanks you. That explained what I need to know :D