2021-05-24 12:39 AM
I want to programme STM32 MCU connected to ESP8266 using USART now i want to programme these STM32 MCU using laptop at remote place connected to internet.
how can i make this possible ?
Solved! Go to Solution.
2021-05-24 06:18 AM
It is possible. In order to program, you'll need to put the chip into bootloader mode either in your code or by using an ESP8266 GPIO pin connected to BOOT0. You can then program it via the UART bootloader, then you'll need to reset it and your code will run.
2021-05-24 06:18 AM
It is possible. In order to program, you'll need to put the chip into bootloader mode either in your code or by using an ESP8266 GPIO pin connected to BOOT0. You can then program it via the UART bootloader, then you'll need to reset it and your code will run.
2021-05-24 10:31 PM
How can i debug STM32 located at remote place connected to internet?
options
1) using uart print message sent using esp
2) STLINK V2 send and receive data over wifi using esp8266
2021-05-25 01:13 AM
Tunneling a ST-LINK connection seems like a bit of a stretch, how do you envision this working? Via should GDB server, hosted/connected how exactly.
2021-05-25 05:46 AM
If I want to debugging STM32 connected to internet using UART ESP8266
How can I do this?
2021-05-25 07:00 AM
> How can i debug STM32 located at remote place connected to internet?
I would use remote desktop for the easiest setup.
> If I want to debugging STM32 connected to internet using UART ESP8266
Debugging (e.g. breakpoints, inspecting variables, etc) over UART isn't possible. You need a SWD/JTAG connection.