Phrodo_00
Phrodo_00

Reputation: 454

Serial line editing

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?

Upvotes: 2

Views: 563

Answers (1)

Armali
Armali

Reputation: 19375

From Hans Passant's comment:

Use "\b \b" instead. –

Upvotes: 3

Related Questions