fix paste into serial console

This commit is contained in:
Fabian 2021-04-21 16:03:47 -05:00
parent ffe80edece
commit da4470233c

View file

@ -228,7 +228,10 @@ function SerialAdapterXtermJS(element, bus)
term.write("This is the serial console. Whatever you type or paste here will be sent to COM1");
term["onData"](function(data) {
bus.send("serial0-input", data.charCodeAt(0));
for(let i = 0; i < data.length; i++)
{
bus.send("serial0-input", data.charCodeAt(i));
}
});
bus.register("serial0-output-char", function(chr)