Trevor wrote:
Tera Term does not allow you to send 0 in a string hence you can't use #0 but you can send 0 as an integer. So to send 0 just use 'send 0' e.g.
you can use this trick to send any byte i.e. to send binary values 1 to 10 you can do this.
Regards
Trevor
Hi Trevor,
I have a similar question by sending the raw data.
I have a binary file include 8 bytes of data as below:
And I am using the command below to send the data:
Now I am trying to send the content data by 'send' command, and I stock.
My new command is like below:
the problem is the code "$E4", seems the 'send' command can not send the code over the ASCII table.
Although the help told me "If sending data is an integer, its lowest-order byte (0-255) is regarded as an ASCII code of the character,..." I found the possible data can only send up to code 0x7F
I have tried as below:
Every code goes fine from 0x01 to 0x7F, when the code become 0x80, the output becomes strange codes....
How could I send a raw data code '0xE4' through the 'send' command?
Or is it impossible? The only way is to use the 'sendfile' command to send the created raw like the original one?
Thank for your kindly reply in advance.