Skip to content
#

stm32f7

Here are 64 public repositories matching this topic...

ThomasGravekamp
ThomasGravekamp commented Jul 13, 2019

Most, if not all, devices in the STM32 family support flashing via a serial connection. Flashing over serial is also suported by the texane/stlink tool.

Flashing over serial works by starting the device in its bootloader mode and connecting it to a PC via an USB to serial converter. For the Blue Pill, connect converter TxD to board RxD (PA10) and connect converter RxD to board TxD (PA9).

  • [

This is simple yet complete WebServer library for STM32 boards running built-in Ethernet LAN8742A (Nucleo-144, Discovery), EMC28J60 or W5x00 Ethernet shields. The functions are similar and compatible to ESP8266/ESP32 WebServer libraries to make life much easier to port sketches from ESP8266/ESP32.

  • Updated Jul 21, 2021
  • C++

This library enables you to use Interrupt from Hardware Timers on an STM32-based board. These STM32 Hardware Timers, using Interrupt, still work even if other functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software timers using millis() or micros(). That's mandatory if you need to measure some data requiring better accuracy. It now supports 16 ISR-based Timers, while consuming only 1 Hardware Timer. Timers' interval is very long (ulong millisecs). The most important feature is they're ISR-based Timers. Therefore, their executions are not blocked by bad-behaving functions or tasks. This important feature is absolutely necessary for mission-critical tasks.

  • Updated Aug 3, 2021
  • C++

EthernetWebServer_STM32 is a library for STM32F/L/H/G/WB/MP1 boards running WebServer using built-in Ethernet LAN8742A, Ethernet LAN8720, W5x00 or ENC28J60 shields. It now supports Ethernet TLS/SSL Client. The library supports HTTP/HTTPS GET and POST requests, provides argument parsing, handles one client at a time. It supports Arduino STM32F/L/H/G/WB/MP1 series with 32+ Kbytes of Flash, using built-in Ethernet (Nucleo-144: F429ZI, F767ZI, Discovery: STM32F746G-DISCOVERY), or ENC28J60, W5x00 Ethernet shields.

  • Updated Jul 21, 2021
  • C

Improve this page

Add a description, image, and links to the stm32f7 topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the stm32f7 topic, visit your repo's landing page and select "manage topics."

Learn more