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
Line 2: Line 2:
''' 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.

Revision as of 10:04, 12 April 2023

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