mirror of
https://github.com/hathach/tinyusb.git
synced 2025-02-22 15:40:06 +00:00
13 lines
277 B
C
13 lines
277 B
C
#ifndef BOARD_H
|
|
#define BOARD_H
|
|
|
|
#define LED_PIN GPIO(GPIO_PORTA, 6)
|
|
|
|
#define BUTTON_PIN GPIO(GPIO_PORTA, 2)
|
|
#define BUTTON_STATE_ACTIVE 0
|
|
|
|
#define UART_TX_PIN GPIO(GPIO_PORTA, 28)
|
|
#define UART_RX_PIN GPIO(GPIO_PORTA, 27)
|
|
|
|
#endif
|