2023-12-27 09:27 AM
In datasheet for STM32G431 series and RM0440 (applicable reference), there are references to ADC12 (I'm encountering this when working on ADC converter, pin and channel assignments for an application.)
There doesn't appear to be a specific definition of ADC12, however, in a couple of places it appears this is shorthand for "ADC1 OR ADC2". For example, if I encounter ADC12_5 (not a specific quote, but the general idea applies), should I interpret this as "I can use either ADC1 channel 5 or ADC2 channel 5 per my preference)?
Thanks for any guidance/clarification.
Solved! Go to Solution.
2023-12-27 10:19 AM - edited 2023-12-27 10:44 AM
Hello @wb0gaz
Refering to the RM0440, you can find that the ADC12_IN9 is mapped to both ADC1 and ADC2. So, you can use even ADC1_IN9 or ADC2_IN9.
You can verify this also using CubeMX. After setting the ADC1_IN9, the ADC2_IN9 become impossible to set because their is a conflict with the ADC1_IN9.
Best Regards.
STTwo-32
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2023-12-27 10:19 AM - edited 2023-12-27 10:44 AM
Hello @wb0gaz
Refering to the RM0440, you can find that the ADC12_IN9 is mapped to both ADC1 and ADC2. So, you can use even ADC1_IN9 or ADC2_IN9.
You can verify this also using CubeMX. After setting the ADC1_IN9, the ADC2_IN9 become impossible to set because their is a conflict with the ADC1_IN9.
Best Regards.
STTwo-32
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2023-12-27 10:45 AM
Thank you!