|
CARME-M4 BSP
V1.5
|
Temperature Sensor, Vrefint and VBAT management functions. More...
Collaboration diagram for Temperature Sensor, Vrefint (Voltage Reference internal):Functions | |
| void | ADC_TempSensorVrefintCmd (FunctionalState NewState) |
| Enables or disables the temperature sensor and Vrefint channels. More... | |
| void | ADC_VBATCmd (FunctionalState NewState) |
| Enables or disables the VBAT (Voltage Battery) channel. More... | |
Temperature Sensor, Vrefint and VBAT management functions.
and VBAT (Voltage BATtery) management functions
===============================================================================
##### Temperature Sensor, Vrefint and VBAT management functions #####
===============================================================================
[..] This section provides functions allowing to enable/ disable the internal
connections between the ADC and the Temperature Sensor, the Vrefint and
the Vbat sources.
[..] A typical configuration to get the Temperature sensor and Vrefint channels
voltages is done following these steps :
(#) Enable the internal connection of Temperature sensor and Vrefint sources
with the ADC channels using ADC_TempSensorVrefintCmd() function.
(#) Select the ADC_Channel_TempSensor and/or ADC_Channel_Vrefint using
ADC_RegularChannelConfig() or ADC_InjectedChannelConfig() functions
(#) Get the voltage values, using ADC_GetConversionValue() or
ADC_GetInjectedConversionValue().
[..] A typical configuration to get the VBAT channel voltage is done following
these steps :
(#) Enable the internal connection of VBAT source with the ADC channel using
ADC_VBATCmd() function.
(#) Select the ADC_Channel_Vbat using ADC_RegularChannelConfig() or
ADC_InjectedChannelConfig() functions
(#) Get the voltage value, using ADC_GetConversionValue() or
ADC_GetInjectedConversionValue(). | void ADC_TempSensorVrefintCmd | ( | FunctionalState | NewState | ) |
Enables or disables the temperature sensor and Vrefint channels.
| NewState | new state of the temperature sensor and Vrefint channels. This parameter can be: ENABLE or DISABLE. |
| None |
Definition at line 589 of file stm32f4xx_adc.c.
| void ADC_VBATCmd | ( | FunctionalState | NewState | ) |
Enables or disables the VBAT (Voltage Battery) channel.
| NewState | new state of the VBAT channel. This parameter can be: ENABLE or DISABLE. |
| None |
Definition at line 615 of file stm32f4xx_adc.c.