initial working demo of PWM dac w/ sinusoidal data

This commit is contained in:
sigil-03 2025-07-27 14:58:39 -06:00
parent faa1622857
commit 0ac166bf5e
4 changed files with 79 additions and 6 deletions

View file

@ -11,21 +11,20 @@ ch32-hal = { path = "ext/ch32-hal/", features = [
"time-driver-tim2",
"rt",
] }
embassy-executor = { version = "0.7.0", features = [
"arch-spin",
"executor-thread",
"task-arena-size-128", # or better use nightly, but fails on recent Rust versions
#"nightly",
] }
embassy-time = "0.4.0"
panic-halt = "1.0"
embedded-hal = "1.0.0"
qingke-rt = { version = "*", features = ["highcode"] }
adpcm-pwm-dac = { path = "ext/adpcm-pwm-dac/" }
[profile.release]
strip = false # symbols are not flashed to the microcontroller, so don't strip them.