Skip to content

Commit a2ef3d1

Browse files
committed
Use semicolon to separate multiple commands on a single line
rt-netid = 2 #Private network; rt-netid Translates into the two commands RT-NETID=2 RT-NETID
1 parent 7a27c87 commit a2ef3d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/LoRaSerial/Serial.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ void processSerialInput()
415415
if (inCommandMode == true)
416416
{
417417
//Check for end of command
418-
if (incoming == '\r')
418+
if ((incoming == '\r') || (incoming == ';'))
419419
{
420420
//Ignore end of command if no command in the buffer
421421
if (commandLength > 0)

0 commit comments

Comments
 (0)