Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ellectroid/stm32f746-cmsis-minimal-blocking-uart-driver
Minimalist blocking UART driver for STM32F746-Disco UART1 ST-Link COM Port
https://github.com/ellectroid/stm32f746-cmsis-minimal-blocking-uart-driver
cmsis stm32 stm32f7 stm32f746g-discovery uart
Last synced: about 22 hours ago
JSON representation
Minimalist blocking UART driver for STM32F746-Disco UART1 ST-Link COM Port
- Host: GitHub
- URL: https://github.com/ellectroid/stm32f746-cmsis-minimal-blocking-uart-driver
- Owner: ellectroid
- Created: 2022-01-19T13:33:58.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-21T12:11:34.000Z (almost 3 years ago)
- Last Synced: 2023-09-30T05:58:12.308Z (about 1 year ago)
- Topics: cmsis, stm32, stm32f7, stm32f746g-discovery, uart
- Language: Assembly
- Homepage:
- Size: 1.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# STM32F746-Minimal-Blocking-Uart-Driver
Minimalist blocking UART driver for STM32F746-Disco UART1 ST-Link COM PortClock: default, no changes (must be 16MHz HSI).
Only activate GPIO, set them to Alternate Function USART1, Very High Speed.
USART1 is the USART connected to ST-Link that makes virtual COM port on PC.This project is a proof of concept (not of UART, but of me - that I can).
It's not as modular as it could be, but it's not intended to be perfect. Might be useful for someone who wants to figure out how the stuff works.
I commented everything to make it simple to understand.Hardware:
STM32F746 Disco board, Windows PCSoftware:
STM32CubeIDE v1.7.0, Putty for UART communication;
No libraries used except for CMSIS register definitions.