Questions tagged [teraterm]

TeraTerm is a free, open source terminal emulator. This tag is for questions about scripting or programming against TeraTerm.

TeraTerm is a free, open source terminal emulator.

Resources:

85 questions
1
vote
3 answers

Wait for certain word in teraterm

I am now doing some teraterm script which I want to wait for certain word (in some large string) and if the word is found then execute a command, if not found execute another command. I tried to use wait and if_else, but it's not working, please…
Daniel Tah
  • 137
  • 1
  • 6
0
votes
0 answers

TeraTerm resend duplicate data when paste lots of texts

I write programs for a pair of the Raspberry Pi Pico W boards, and one side recive the data(Texts) from the serial port, then encrypted it and send to another board with socket. Another side recive it and decrypt it. The encrypt process will take…
0
votes
1 answer

How can I get Python to read output data from another process (in this case TeraTerm) and check it is correct?

I have no idea where to begin. I am trying to automate data reading testing in TeraTerm (pass data specifically). I know what the expected output from TeraTerm should be, so is there a way I can get Python to read and check the data from TeraTerm…
Naj
  • 1
  • 2
0
votes
0 answers

Not able to replicate tera term's way of flushing data using python. Is there a way?

I have a system that communicates using the TCP/IP protocol. I regularly communicate with it using the socket module in Python. For proper inputs, the system gives an acknowledgement (Ack) immediately, then processes the input and gives another…
0
votes
1 answer

Why is Teraterm not creating a logfile when launched via Jenkins batch-file in Windows?

I'm currently facing an issue on jenkins. In the Jenkins job, I launch a windows batch file which launch some tests. For these tests, I need to call Teraterm on the background which is basically a tool used to spy uart communications. After Teraterm…
Solene
  • 1
0
votes
0 answers

Serial Com to ProSim2 using Python

I am trying to write a basic GUI in python to communicate with PromSim2 using the commands as listed in the [datasheet](from PDF page 40 onwards). I am trying to use Python serial mode using the below functions. def connect_dev(): try: …
seeker
  • 1
  • 1
0
votes
1 answer

Serial Comunication via Python

I'm trying to write a command and read how the system reply to it. The code I've done is the following: import serial import time import sys ser = serial.Serial('COM5', 38400, timeout=1) print(ser.name) msg = 'show interfaces status ethernet…
martinmistere
  • 229
  • 2
  • 14
0
votes
0 answers

How to receive messages in AWS CLI which is published to the AWS IOT core using AT commands in Tera term and visa-versa

I have connected a IOT module to AWS IOT core using AT command. I am using Tera-term to connect my IOT module to send AT commands. Q1. I want to publish to a topic from the connected module from Tera-term using AT commands and want to receive…
0
votes
0 answers

How to send command to teraterm using python script

I am new to python, I am trying to open tera term and write commands and read the results using python script,(ex: getpl #21) but I am able to open teraterm but not able to pass commands via python script please help me here is my code p =…
Bless
  • 1
0
votes
1 answer

Why does Tera Term return the Greek letter alpha when I send '!' to the MSP432 microcontroller?

I'm trying to learn how to use the microcontroller properly for a class and for some reason the terminal I'm using to communicate with the micro controller refuses to display the proper character and will also get stuck in the buffer…
TheBoomis
  • 1
  • 1
0
votes
0 answers

aws diploy war file how

I deployed a war file on AWS tomcat using WinSCP. AND I was able to access the file using the following URL. http://public_ip:8080/application_name However, I want to make it possible to access to the war file without the application name. I want to…
Emily
  • 1
  • 3
0
votes
1 answer

Using treaters for the first time. How move file to other Directory

I have created two directories [Dir1] and [Dir2] and inside [Dir1], I have created a file called impFile. Now, From where I ended up, I want to move impFile that is in Dir1 into Dir2. I tried this " mv /Dir1/impFile.txt /Dir2/impFile.txt but it…
Emily
  • 1
  • 3
0
votes
0 answers

Can I add a horizontal scroll bar to Tera Term session?

Working with Tera Term and Unix. If I cat command a file in my Tera Term session, each record wraps around to the next line. I want a horizontal scroll bar to view each record on a single line. Is this possible?
Jaguar Nation
  • 122
  • 11
0
votes
1 answer

Receive Files using teraterm ZMODEM

I'm using teraterm from my windows PC. I have a serial (USB) port conection to a board that is running linux. I have access to the linux terminal throught teraterm. This is the only way to interact with the board. I want to "copy" files from the…
Ivan
  • 1,352
  • 2
  • 13
  • 31
0
votes
1 answer

How do I wait for a response from a serial port command before executing the new command?

I'm trying to execute some AT commands one at a time. In Teraterm I execute this: sendln "AT+AS=0" waitln "OK" sendln "AT+CREG=?" sendln "AT+creg=0,1" pause 15 sendln "AT+creg=?" How would I execute these commands in a C# desktop application…
c_c
  • 1
  • 3