Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nafiealhilaly/stm32-dma
Practice using Direct Memory Access with STM32 and Libopencm3
https://github.com/nafiealhilaly/stm32-dma
Last synced: about 6 hours ago
JSON representation
Practice using Direct Memory Access with STM32 and Libopencm3
- Host: GitHub
- URL: https://github.com/nafiealhilaly/stm32-dma
- Owner: NafieAlhilaly
- Created: 2025-01-25T08:50:46.000Z (14 days ago)
- Default Branch: develop
- Last Pushed: 2025-01-25T09:00:47.000Z (14 days ago)
- Last Synced: 2025-01-25T09:26:24.934Z (14 days ago)
- Language: Makefile
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Using Direct Memory Access with stm32 and libopencm3.
## Run
To build the project, navigate to the firmware folder and run
```consolemake
```
to compile the project and produce the image.
then run
```consolemake burn
```
to burn the image to the Microcontroller flash memoryuse `screen.sh` to monitor uart output
```terminal
./screen.shDMA Started ...
Source -> 124
Distination -> 123
Data transferred to distination
Source -> 124
Distination -> 124DMA Started ...
Source -> 125
Distination -> 124
Data transferred to distination
Source -> 125
Distination -> 125```