cancel
Showing results for 
Search instead for 
Did you mean: 

[STM32L412] CubeMX generated LL code for ADC TEMP channel

ml512
Associate

Hi,

I'm using CubeMX 6.11.0 (STM32L4 package version 1.18.0) to generate code for the STM32L412 with LL drivers.

My configuration enables the VREFINT and TEMP channels for ADC1.

The generated function MX_ADC1_Init() contains the line

 

 

LL_ADC_SetCommonPathInternalCh(__LL_ADC_COMMON_INSTANCE(ADC1), LL_ADC_CHANNEL_VREFINT|LL_ADC_CHANNEL_TEMPSENSOR);

 

 

which should actually be

 

 

LL_ADC_SetCommonPathInternalCh(__LL_ADC_COMMON_INSTANCE(ADC1), LL_ADC_PATH_INTERNAL_VREFINT | LL_ADC_PATH_INTERNAL_TEMPSENSOR);

 

 

This prevents correct temperature channel measurements.

1 ACCEPTED SOLUTION

Accepted Solutions
STTwo-32
ST Employee

Hello @ml512 and welcome to the ST Community 😊.

Thank you for reporting this. I've escalated this to the concerned team for correction (under internal ticket number 179295).

 

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.

View solution in original post

1 REPLY 1
STTwo-32
ST Employee

Hello @ml512 and welcome to the ST Community 😊.

Thank you for reporting this. I've escalated this to the concerned team for correction (under internal ticket number 179295).

 

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.