mirror of
https://github.com/WeActStudio/WeActStudio.EpaperModule.git
synced 2026-08-16 13:13:45 +02:00
23 lines
341 B
C
23 lines
341 B
C
#ifndef __BOARD_H
|
|
#define __BOARD_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "gd32f10x.h"
|
|
|
|
void board_usart0_init(void);
|
|
void board_led_init(void);
|
|
void board_led_on(void);
|
|
void board_led_off(void);
|
|
void board_led_toggle(void);
|
|
void board_button_init(void);
|
|
uint8_t board_button_state_get(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|