You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For compatibility concerns, is it possible to implement a "dummy" analogReference() function ?
This function is often used by teachers to explain ADC principle using Arduino UNO boards.
Of course, if STM32 ADC can be set to a level different than 3.3 Volts, a future working implementation would be a must-have for teachers.
BR
Yannick
The text was updated successfully, but these errors were encountered:
in the current version 2.5.0 used void analogReference(eAnalogReference ulMode)
prototype, instead of original in Arduino: void analogReference(uint8_t mode);
so the compatibility is not provided
As the function is provided just for compatibility (be able to build) and do nothing as the arguments is unused and also match an uint8_t value it is compatible.
For compatibility concerns, is it possible to implement a "dummy" analogReference() function ?
This function is often used by teachers to explain ADC principle using Arduino UNO boards.
Of course, if STM32 ADC can be set to a level different than 3.3 Volts, a future working implementation would be a must-have for teachers.
BR
Yannick
The text was updated successfully, but these errors were encountered: