Provide an interface for reading ADC. This is a very simple device driver module, basically just a wrapper for the stm32 HAL calls and configuration
Interface:
ADC_get_value() : return the current ad reading. Or maybe this should do the conversion and be ADC_get_voltage()? See point below
Things to figure out:
it's possible to have multiple ADC channels, though we only use the voltage sense one. For completion, we could specify like ADC_get_voltage() instead, to indicate this method using the voltage sense channel?
see #5
this is very simple, 1 person can handle it
Provide an interface for reading ADC. This is a very simple device driver module, basically just a wrapper for the stm32 HAL calls and configuration
Interface:
Things to figure out: