We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1dc9c4 commit 09fd192Copy full SHA for 09fd192
examples/NonReg/SerialLoop/SerialLoop.ino
@@ -10,6 +10,8 @@
10
This example code is in the public domain.
11
*/
12
13
+#include "utils.h"
14
+
15
/*
16
* 1 - Connect Rx/Tx of the desired Serial
17
* 2 - Define SERIAL_PORT_TESTED by setting Serial number to use 1,2,...
@@ -124,7 +126,7 @@ void setup() {
124
126
SERIAL_PORT_MONITOR.begin(115200);
125
127
while(!SERIAL_PORT_MONITOR);
128
SERIAL_PORT_MONITOR.print("SerialLoop test on ");
- SERIAL_PORT_MONITOR.println(xstr(SERIAL_PORT_TESTED));
129
+ SERIAL_PORT_MONITOR.println(XSTR(SERIAL_PORT_TESTED));
130
SERIAL_PORT_MONITOR.print(configNb);
131
SERIAL_PORT_MONITOR.println(" configs to test.");
132
SERIAL_PORT_MONITOR.print(speedNb);
0 commit comments