Signed-off-by: Jesse Vincent <jesse@keyboard.io>
pull/1105/head
Jesse Vincent 3 years ago
parent 5c7ffe6383
commit 46d9f06d77
No known key found for this signature in database
GPG Key ID: 122F5DF7108E4046

@ -38,13 +38,13 @@ EventHandlerResult FocusSerial::afterEachCycle() {
do {
command_[i++] = Runtime.serialPort().read();
} while (command_[i - 1] != SEPARATOR
&& i < sizeof(command_)
&& Runtime.serialPort().available()
&& (Runtime.serialPort().peek() != NEWLINE ));
&& i < sizeof(command_)
&& Runtime.serialPort().available()
&& (Runtime.serialPort().peek() != NEWLINE));
// If this was a command with a space-delimited payload, strip the space delimiter off
if (command_[i - 1] == SEPARATOR )
if (command_[i - 1] == SEPARATOR)
command_[i - 1] = '\0';

Loading…
Cancel
Save