We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba59513 commit e979f30Copy full SHA for e979f30
src/DAP_config.cpp
@@ -0,0 +1,16 @@
1
+#include "DAP_config.h"
2
+
3
+PortPin SWDIOPin(PIN_SWDIO, INPUT_PULLUP);
4
+PortPin SWCLKPin(PIN_SWCLK, INPUT_PULLUP);
5
+PortPin TDIPin(PIN_TDI, INPUT);
6
+PortPin TDOPin(PIN_TDO, INPUT);
7
+PortPin nRESETPin(PIN_nRESET, INPUT_PULLUP);
8
9
+#ifndef PIN_LED_CONNECTED
10
+#define PIN_LED_CONNECTED 0
11
+#endif
12
+LED_CONNECTEDPinType LED_CONNECTEDPin(PIN_LED_CONNECTED, INPUT);
13
+#ifndef PIN_LED_RUNNING
14
+#define PIN_LED_RUNNING 0
15
16
+LED_RUNNINGPinType LED_RUNNINGPin(PIN_LED_RUNNING, INPUT);
0 commit comments