19 lines
225 B
C
19 lines
225 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "bsp.h"
|
|
|
|
typedef enum {
|
|
BSP_GPIO_LED,
|
|
BSP_GPIO_NUM,
|
|
} bsp_gpio_t;
|
|
|
|
bsp_status_t bsp_gpio_write_pin(bsp_gpio_t gpio, bool value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|