-
-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: Local Echo #38
Comments
I have the same question |
@sk-jame @lefebvresam |
When it's available in the installer? |
@lefebvresam I've uploaded a new version here |
What also should be a nice to have is that you can add an arbitrary sequence when pressing enter. Because some command interpreters expect that you end a command sentence with for instance 0xFF0xFF0xFF. |
@lefebvresam |
Can you escape them, or use hex values? I want to send 0xFF0xFF0xFF for each string termination. |
@lefebvresam now it's possible to specify a custom sequence of bytes to be sent on carriage return |
But how do you enter 0xFF0xFF0xFF? As ÿÿÿ? |
In the new version (v0.9.2) you can simply add the option --tx:bytes="0xFF0xFF0xFF" or --tx:bytes="FFFFFF" or --tx:bytes="FF FF FF" or --tx:bytes="0xFF 0xFF 0xFF" as you prefer. note: --tx is the short form of --tx_newline option |
I use this which is working:
But with the sniffer I see that every character is sent immedately after entering it. Thanks in advance. |
@lefebvresam what you are asking is technical feasible, but this apparently simple modification is against the nature of Simply Serial that is a TERMINAL CONSOLE. In all terminal console programs like Simply Serial (i.e. Teraterm or Putty) each character is transmitted immediatelly, what you are asking is more a "serial tool" like Realterm or YAT. If you want to correct keyboard mistakes, you can implement it in your application: simply upon receiving the char '\b', that is the backspace characters in C, you should remove the last char received before '\b' from the received string. Obviously this is only feasibile if you don't use any command that can contains the '\b' char :-) There are a lot more that you can do with escape sequence with a VT100 ANSI terminal like windows terminal and SimplySerial https://en.wikipedia.org/wiki/ANSI_escape_code |
Hello, I think that very important feature is missing - local echo. I don't think it should be explained, it is well known interface. So just wanna mention that it would be great to have it here.
The text was updated successfully, but these errors were encountered: