We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7632c4 commit 2a3cfc6Copy full SHA for 2a3cfc6
2 files changed
examples/NonReg/Basics/Tests_basic_functions/Test_IO.ino
@@ -1,7 +1,7 @@
1
/*
2
* Test some advanced I/O functions
3
*/
4
-
+#ifdef TIMER_TONE
5
6
* Variable for advanced I/O test
7
@@ -82,3 +82,4 @@ void test_IO_IT(void)
82
clknb++;
83
}
84
85
+#endif
examples/NonReg/Basics/Tests_basic_functions/Tests_basic_functions.ino
@@ -22,7 +22,9 @@ void list_test(void)
22
Serial.println("1-String");
23
Serial.println("2-Math");
24
Serial.println("3-Bytes");
25
26
Serial.println("4-Advanced I/O");
27
28
29
30
void loop() {
@@ -37,7 +39,9 @@ void loop() {
37
39
case 1: test_string(); break;
38
40
case 2: test_math(); break;
41
case 3: test_bytes(); break;
42
43
case 4: test_IO(); break;
44
45
default: break;
46
47
0 commit comments