Voltage and Temperature calculation macro not responding on STM32H563ZIT6
Hello Community,
I am using 2 function calls
__LL_ADC_CALC_VREFANALOG_VOLTAGE();
__LL_ADC_CALC_TEMPERATURE_FLOAT();
My implementation:
uhADCxConvertedData_VrefAnalog_mVolt = __LL_ADC_CALC_VREFANALOG_VOLTAGE(aADCxConvertedData[1], LL_ADC_RESOLUTION_12B);
temperature = __LL_ADC_CALC_TEMPERATURE_FLOAT(uhADCxConvertedData_VrefAnalog_mVolt, aADCxConvertedData[2], LL_ADC_RESOLUTION_12B);
I am seeing the above macros not respond and there is a hard-fault whenever I call the above functions. Any help would be appreciated.
Thank you

