123456789101112131415161718192021222324252627 |
- #ifndef NRF_TS5A23159_H__
- #define NRF_TS5A23159_H__
- #include <stdint.h>
- #include <stdbool.h>
- #include "boards.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef enum{
- TS5A23159_NC,
- TS5A23159_NO
- }TS5A23159_COM;
-
- void nrf_Ts5a23159_gpio_init(void);
- bool nrf_Ts5a23159_set(TS5A23159_COM channel);
- #ifdef __cplusplus
- }
- #endif
- #endif // NRF_TS5A23159_H__
- /** @} */
|