12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #ifndef NRF_DRV_LPCOMP_H__
- #define NRF_DRV_LPCOMP_H__
- #include <nrfx_lpcomp.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef nrfx_lpcomp_config_t nrf_drv_lpcomp_config_t;
- #define NRF_DRV_LPCOMP_DEFAULT_CONFIG NRFX_LPCOMP_DEFAULT_CONFIG
- #define lpcomp_events_handler_t nrfx_lpcomp_event_handler_t
- #define nrf_drv_lpcomp_init nrfx_lpcomp_init
- #define nrf_drv_lpcomp_uninit nrfx_lpcomp_uninit
- #define nrf_drv_lpcomp_enable nrfx_lpcomp_enable
- #define nrf_drv_lpcomp_disable nrfx_lpcomp_disable
- #ifdef __cplusplus
- }
- #endif
- #endif
|