These are questions I think people will want to the answers to.
Questions
How do I select a non-standard baud rate on a serial port?
How do I use a serial port that was not detected?
Why when I get a new line char does the cursor not move to the start of the line?
- How do I select a non-standard baud rate on a serial port?
- How do I use a serial port that was not detected?
-
When you open a new connection it will make a URI that has all the
settings and what comport to use. You can manually edit this URI
to use settings and devices that are different that the standard
settings.
On Windows the URI uses this format:
COM[Port]:[Bit Rate],[Data Bits],[Parity],[Stop Bits]
On Linux the URI uses this format:
COM://[Device Path],[Bit Rate],[Data Bits],[Parity],[Stop Bits]
You can open a new connection using dialog and select any setting then
edit the URI in the main window, or you can just type a URI directly
and it will open a connection with thoughs settings.
You can also use File->New Tab From URI... for more info about
the available URI's and find examples.
- Why when I get a new line char does the cursor not move to the start of the line?
-
A new line char (0x0A) only moves the cursor down one line (like
pressing the down arrow). There needs to be a carriage
return char (0x0D) to move the cursor to the start of the line.
A plugin is available that will to a carriage return when it
see a new line char. You can download it from
https://whippyterm.com/ShowPlugin.php?id=NewLineProcessor.wtp.
After installing it you need to go into "Settings->Terminal->Data Processing"
and add a checkmark beside the "New Line Processor" in the Misc area.