James Wooderson
James Wooderson

Reputation: 51

Serial terminal in emacs

I'm working on and embedded system with a serial (RS232) console. (With a Linux desktop) I would like to connect to the serial port in emacs and be able to navigate the output with my normal emacs navigation (search / copy / yank / etc )

I am currently doing this with ansi-term + GNU Screen.

However, I cannot get the GNU Screen navigation to my liking.

Any suggestions??

Upvotes: 5

Views: 3570

Answers (2)

Ben
Ben

Reputation: 1359

I'm not sure how GNU screen fits into the equation but have a look at serial-term.

Use C-cC-k to go to char mode and C-cC-j to go to line mode (where your normal bindings apply).

Killing the buffer closes the port (C-ck in char mode, C-xk in line mode).

Upvotes: 6

Josh
Josh

Reputation: 444

This page covers using screen with ansi-term under emacs: GnuScreen

Upvotes: 1

Related Questions