内容简介:Program your STM32Fxx Over-the-Air using ESP32
OTA for STM32Fxx MCU using ESP32
Program your STM32Fxx Over-the-Air using ESP32
View Code · Report Bug · Request Feature · Create a Pull Request
Table of Contents
About the Project
The project aims at enabling firmware update of STM32Fxx series MCUs Over-the-Air using ESP32.
Testing was done with ESP32-DevKitC v4 board and STM32F103C8T6 ( Blue Pill ) and STM32F072C8T6 . You can try with any other STM32Fxx MCUs and let us know how it worked out.
Code
/esp_stm_flash -> Basic flashing utility, requires path of the .bin file which has been already uploaded in SPIFFS
/file_serving_stm -> OTA demo, with HTTP File Server with embedded flash link
/references -> Python scripts for understanding the flashing protocol commands and verification
Getting Started
Hardware Required
To run the OTA demo, you need an ESP32 dev board (e.g. ESP32-WROVER Kit) or ESP32 core board (e.g. ESP32-DevKitC). For the STM32, you can use the STM32 Blue Pill.
Prerequisites
-
ESP-IDF v4.0 and above
You can visit the ESP-IDF Programmming Guide for the installation steps.
-
Arduino IDE
Arduino IDE provides with an easy way to generate the .bin files for your STM32 MCU. For setting up Arduino Core for the STM32 family, you can follow this link .
You can also use CubeIDE or Keil for generation of .bin files.
Setting Up
-
Wire your STM32 (e.g. Blue Pill) to the ESP32 as follows:
ESP32 STM32 GPIO4(TX) PA10(RX) GPIO5(RX) PA9(TX) GPIO19 RESET GND GND -
Generate a .bin file for the STM32 MCU code you want to flash.
Disclaimer
We have assumed that the STM32 is already in boot mode before flashing the code ( Step 1 & 5 insection). You can use a MOSFET as a switch to automate the process, using an ESP32 GPIO as an input.
Usage (For STM32 Blue Pill)
-
Make sure the BOOT0 jumper pin on the board is set to 1 (programming mode) while uploading the code. Once the code is flashed this pin can be changed back to initial position (operating mode). This procedure with your STM32Fxx MCU varies according with your MCU version.
Refer this documentation for help.
- Open the project configuration menu (
idf.py menuconfig) go toExample Connection Configuration->- WiFi SSID: WiFi network to which your PC is also connected to.
- WiFi Password: WiFi password
- In order to test the OTA demo ->
/file_serving_avr:- Compile and burn the firmware
idf.py -p PORT -b BAUD flash - Run
idf.py -p PORT monitorand note down the IP assigned to your ESP module. The default port is 80. - Test the example interactively on a web browser (assuming IP is 192.168.43.82):
http://192.168.43.82/
- Compile and burn the firmware
- After clicking the flash link, you should get the following results -
- Revert the BOOT0 pin to its initial position and press the RESET Button on the STM32.
- Voila! your STM32 is now running the code you uploaded Over-the-Air!
Troubleshooting
- Check your wiring. Make sure that the ESP32 and STM32 are powered separately. Don't power one MCU using the other.
- Verify your WiFi SSID and password. It is a known bug that ESP32 does not connect to WiFi stations with 'space' character in the SSID or password.
- Check if your STM32 is locked using this official tool by STMicroelectronics and unlock it by erasing the memory of your chip.
- Check your STM32 code, which generated the .bin file, for any 'logical' errors.
- For any other bugs or errors, you can always raise issues .
Contributors
For OTA updates for AVR MCUs, you can follow this project .
Acknowledgements
-
STM32 USART Protocol: Documentation
-
Python Script: stm32loader.py
-
STM32 Boot Mode Procedure: Documentation
License
Distributed under the MIT License. See LICENSE for more information.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数据挖掘中的新方法:支持向量机
邓乃扬、田英杰 / 科学出版社 / 2004-6-10 / 53.00元
支持向量机是数据挖掘中的一个新方法。支持向量机能非常成功地处理回归问题(时间序列分析)和模式识别(分类问题、判别分析)等诸多问题,并可推广于预测和综合评价等领域,因此可应用于理科、工科和管理等多种学科。目前国际上支持向量机在理论研究和实际应用两方面都正处于飞速发展阶段。希望本书能促进它在我国的普及与提高。 本书对象既包括关心理论的研究工作者,也包括关心应用的实际工作者。对于有关领域的具有高等......一起来看看 《数据挖掘中的新方法:支持向量机》 这本书的介绍吧!