We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cda972e + df98db2 commit 0e93139Copy full SHA for 0e93139
variants/MINIMA/pins_arduino.h
@@ -91,6 +91,8 @@ static const uint8_t D15 = PIN_D15;
91
// ----
92
#define PIN_LED (13u)
93
#define LED_BUILTIN PIN_LED
94
+#define LED_TX (21u)
95
+#define LED_RX (22u)
96
97
/****** RTC CORE DEFINES *******/
98
#define RTC_HOWMANY 1
variants/MINIMA/variant.cpp
@@ -46,6 +46,8 @@ extern "C" const PinMuxCfg_t g_pin_cfg[] = {
46
{ BSP_IO_PORT_01_PIN_00, P100 }, /* (19) A5/SCL */
47
48
{ BSP_IO_PORT_05_PIN_00, P500 }, /* (20) Analog voltage measure pin */
49
+ { BSP_IO_PORT_00_PIN_12, P012 }, /* (21) TX LED */
50
+ { BSP_IO_PORT_00_PIN_13, P013 }, /* (22) RX LED */
51
};
52
53
extern "C" const size_t g_pin_cfg_size = sizeof(g_pin_cfg);
0 commit comments