/**@file temperature-sensor.c * @brief MB851 temperature sensor APIS * * * */ #include PLATFORM_HEADER #include BOARD_HEADER #include "hal/hal.h" #include "hal/error.h" #include "hal/micro/temperature-sensor.h" #include "hal/micro/adc.h" void temperatureSensor_Init(void) { /* Configure temperature sensor GPIO */ halGpioConfig(TEMPERATURE_SENSOR_GPIO,GPIOCFG_ANALOG); /* Init ADC driver */ halInternalInitAdc(); /* NOTE: The ADC extended range is inaccurate due to the high voltage mode bug of the general purpose ADC (see STM32W108 errata). As consequence, it is not reccomended to use this ADC driver for getting the temperature values. */ #ifdef ENABLE_ADC_EXTENDED_RANGE_BROKEN halAdcSetRange(TRUE); #endif /* ENABLE_ADC_EXTENDED_RANGE_BROKEN */ }/* end temperatureSensor_Init() */ uint32_t temperatureSensor_GetValue(void) { static uint16_t ADCvalue; static int16_t volts; /* NOTE: The ADC extended range is inaccurate due to the high voltage mode bug of the general purpose ADC (see STM32W108 errata). As consequence, it is not reccomended to use this ADC driver for getting the temperature values. */ halStartAdcConversion(ADC_USER_APP, ADC_REF_INT, ADC_SOURCE(halGetADCChannelFromGPIO(TEMPERATURE_SENSOR_GPIO),ADC_MUX_VREF2), ADC_CONVERSION_TIME_US_4096); halReadAdcBlocking(ADC_USER_APP, &ADCvalue); // This blocks for a while, about 4ms. // 100 uVolts volts = halConvertValueToVolts(ADCvalue); return ((18641 - (int32_t)volts)*100)/1171; }/* end temperatureSensor_GetValue() */