Skip to content
Snippets Groups Projects
Commit 084edb82 authored by deuce's avatar deuce
Browse files

Add suport for control code 0x85 (Next Line)

parent 6d93a763
Branches
Tags
No related merge requests found
......@@ -30,6 +30,9 @@ function handleCtrl(byte)
case '\x07': // BEL
sound.beep();
break;
case '\x85': // NEL (Next Line)
writeText("\r\n");
break;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment