gpio.h 131 B

1234567891011121314
  1. #ifndef __GPIO_H
  2. #define __GPIO_H
  3. #include <stdbool.h>
  4. //
  5. void gpio_init(void);
  6. //
  7. void gpio_set_output(bool state);
  8. #endif