blob: 2b61e810eb0a16b11ffb29afdbea80459295edcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* metadata:
name: DA1469x Development Kit Pro
url: https://lpccs-docs.renesas.com/um-b-090-da1469x_getting_started/DA1469x_The_hardware/DA1469x_The_hardware.html
*/
#ifndef BOARD_H
#define BOARD_H
#define LED_PIN 33
#define LED_STATE_ON 1
#define BUTTON_PIN 6
#define BUTTON_STATE_ACTIVE 0
#define NEED_VBUS_MONITOR
#endif
|