With:
- LED control
- UART
- PDM out
- square wave generator (DMA to PDM out (was it really necessary?))
- sample program that plays a square wave from UART values
This commit is contained in:
Paul Mathieu
2021-03-13 15:50:25 -08:00
parent 75b5488b8d
commit 14dba00fd0
7 changed files with 510 additions and 0 deletions

5
dsp/led.h Normal file
View File

@@ -0,0 +1,5 @@
#pragma once
struct led {
volatile uint8_t output;
};