EFR32 Blue Gecko 1 Software Documentation  efr32bg1-doc-5.1.2
vddcheck.h
Go to the documentation of this file.
1 /**************************************************************************/
17 #ifndef __VDDCHECK_H
18 #define __VDDCHECK_H
19 
20 #include <stdint.h>
21 #include <stdbool.h>
22 
23 /***************************************************************************/
28 /***************************************************************************/
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36 
37 void VDDCHECK_Init(void);
38 void VDDCHECK_Disable(void);
39 bool VDDCHECK_LowVoltage(float vdd);
40 
41 #ifdef __cplusplus
42 }
43 #endif
44 
48 #endif
void VDDCHECK_Init(void)
VCMP initialization routine.
Definition: vddcheck.c:26
void VDDCHECK_Disable(void)
VCMP deinitialization routine.
Definition: vddcheck.c:38
bool VDDCHECK_LowVoltage(float vdd)
Check if voltage is higher than indicated.
Definition: vddcheck.c:55