| 1234567891011121314151617181920 |
- #ifndef POWER_MANAGEMENT_H
- #define POWER_MANAGEMENT_H
- //The driver manages the power of the RF circuit
- #include <stdint.h>
- #include <stdbool.h>
- typedef struct
- {
- bool (*Init)( );
- void (*DeInit)();
- void (*INPTRG)( bool state );
- void (*INPTRG_1)( bool state );
- void (*INPTRG_EN)( bool state );
- void (*EXT_REG_MR)( bool state );
- void (*VRF_EN_5)( bool state );
- }
- PM_Handle_t;
- extern const PM_Handle_t PMHandle;
- #endif
|