https://github.com/embeddedalpha/stm32f411ceu6
Repo for STM32F411x based Black Pill Development Board
https://github.com/embeddedalpha/stm32f411ceu6
c code driver embedded-c embedded-systems library stm32 stm32f4 stm32f411
Last synced: 2 months ago
JSON representation
Repo for STM32F411x based Black Pill Development Board
- Host: GitHub
- URL: https://github.com/embeddedalpha/stm32f411ceu6
- Owner: embeddedalpha
- License: mit
- Created: 2021-01-29T19:34:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-11T23:02:18.000Z (about 1 year ago)
- Last Synced: 2025-04-07T13:37:04.056Z (3 months ago)
- Topics: c, code, driver, embedded-c, embedded-systems, library, stm32, stm32f4, stm32f411
- Language: C
- Homepage:
- Size: 390 KB
- Stars: 14
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# STM32F411x 
### [Reference Manual](https://github.com/embeddedalpha/STM32F411x/files/5899226/dm00119316-stm32f411xc-e-advanced-arm-based-32-bit-mcus-stmicroelectronics.pdf) | [Datasheet](https://www.st.com/resource/en/datasheet/stm32f411re.pdf)

### To enable serial console:
```c
Console_Init(9600); //PA9 -> TX and PA10 -> RX
printConsole("Print what you want \n\r" );
```