2024-12-27 09:11:09 +07:00
|
|
|
/* metadata:
|
|
|
|
name: CH32V103R-R1-1v1
|
|
|
|
url: https://github.com/openwch/ch32v103/tree/main/SCHPCB/CH32V103R-R1-1v1
|
|
|
|
*/
|
|
|
|
|
2024-06-14 16:06:37 +07:00
|
|
|
#ifndef BOARD_H_
|
|
|
|
#define BOARD_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define LED_PORT GPIOA
|
|
|
|
#define LED_PIN GPIO_Pin_10
|
|
|
|
#define LED_STATE_ON 0
|
|
|
|
|
|
|
|
#define BUTTON_PORT GPIOA
|
|
|
|
#define BUTTON_PIN GPIO_Pin_1
|
|
|
|
#define BUTTON_STATE_ACTIVE 0
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|