Console From MACOSX Workstation: Difference between revisions

From embeddedTS Manuals
(Created page with " ''' Console from MACOSX ''' There are many serial terminal applications for MACOSX, two commonly used applications are 'picocom', and 'screen'. These examples demonstrate these applications and assume that the serial device is "/dev/tty.usbmodem00D069C0FFEE1" which is common for USB adapters. Be sure to replace the serial device string with that of the device on your workstation. 'picocom' is a very small and simple client. <source lang=bash> picocom -b 115200 /dev/t...")
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
''' Console from MACOSX '''
''' Console from MACOSX '''


There are many serial terminal applications for MACOSX, two commonly used applications are 'picocom', and 'screen'.  These examples demonstrate these applications and assume that the serial device is "/dev/tty.usbmodem00D069C0FFEE1" which is common for USB adapters. Be sure to replace the serial device string with that of the device on your workstation.
There are many serial terminal applications for MACOSX, two commonly used applications are 'picocom', and 'screen'.  These examples demonstrate these applications and assume that the serial device is "/dev/tty.usbmodem00D069C0FFEE1". Be sure to replace the serial device string with that of the device on your workstation.


'picocom' is a very small and simple client.
'picocom' is a very small and simple client.

Latest revision as of 12:39, 22 April 2024

Console from MACOSX

There are many serial terminal applications for MACOSX, two commonly used applications are 'picocom', and 'screen'. These examples demonstrate these applications and assume that the serial device is "/dev/tty.usbmodem00D069C0FFEE1". Be sure to replace the serial device string with that of the device on your workstation.

'picocom' is a very small and simple client.

picocom -b 115200 /dev/tty.usbmodem00D069C0FFEE1


'screen' is a terminal multiplexer which happens to have serial support.

screen /dev/tty.usbmodem00D069C0FFEE1 115200