forked from antirez/linenoise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblocking.ino
74 lines (67 loc) · 1.51 KB
/
blocking.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <Arduino.h>
#ifdef USE_TINYUSB
#include <Adafruit_TinyUSB.h>
#endif
#include <Linenoise.h>
// track DTR change
bool dtr = false;
void setup()
{
linenoiseSetCompletionCallback(ln_completion);
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin(115200);
}
void loop()
{
update_dtr();
if (dtr) {
char* line = linenoise(">");
if (line) {
linenoiseHistoryAdd(line);
handle_line(line);
linenoiseFree(line);
} else {
// CTRL-C pressed or serial port closed
}
}
delay(1);
yield();
}
// linenoise completion function callback
void ln_completion(const char *buf, linenoiseCompletions *lc)
{
switch (buf[0]) {
case 'd':
linenoiseAddCompletion(lc, "debug");
break;
case 'h':
linenoiseAddCompletion(lc, "hello");
break;
}
}
void update_dtr()
{
if (!dtr && Serial && Serial.dtr()) {
dtr = true;
digitalWrite(LED_BUILTIN, HIGH);
delay(10);
Serial.print("\r\n");
Serial.flush();
} else if (dtr && (!Serial.dtr() || !Serial)) {
dtr = false;
digitalWrite(LED_BUILTIN, LOW);
}
}
void handle_line(char* line)
{
if (!strcmp("hello", line)) {
Serial.println("Hello World!");
} else if (!strcmp("debug", line)) {
Serial.println("Enter debug mode");
linenoisePrintKeyCodes();
Serial.println("Exit debug mode");
} else {
Serial.print("line: ");
Serial.println(line);
}
}