Serial line editing

378 Views Asked by At

I'm working on a micro controller with a serial terminal and I want to be able to backspace characters, I'm already handling it in the input buffer, but I don't know what to send through serial to delete it from the terminal emulator, sending \b only moves the cursor back. ¿Anyone knows how to handle this in VT100?

1

There are 1 best solutions below

0
On BEST ANSWER

From Hans Passant's comment:

Use "\b \b" instead. –