embassy-rs / embassy

Modern embedded framework, using Rust and async.
https://embassy.dev
Apache License 2.0
4.91k stars 672 forks source link

Any work toward ADC for the STM32WL chipset? #840

Open risingtiger opened 2 years ago

risingtiger commented 2 years ago

Is any work being put toward ADC (and/or DAC) for the STM32WL chipset?

Any pointers or advice as to best practices in implementing this?

Dirbaio commented 2 years ago

No one is working on it AFAIK.

First step would be to add it to stm32-data. If you're lucky it'll be the same version (adc_vX) as another supported family, so you can just reuse it. If not, youll have to also write a new driver for it in embassy-stm32.

risingtiger commented 2 years ago

I see. I'll look into it