12345678910111213141516171819202122 |
- #ifndef NRF_74HC4052_H__
- #define NRF_74HC4052_H__
- #include <stdint.h>
- #include <stdbool.h>
- #include "define.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- void nrf_74hc4052_gpio_init(void);
- bool nrf_74hc4052_set(uint8_t channel);
- #ifdef __cplusplus
- }
- #endif
- #endif // NRF_74HC4052_H__
- /** @} */
|