Skip to content

chon-group/SerialPortEmulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SerialPortEmulator

This is a serial port emulator. This is done by creating pairs of ports on /dev where writing data on one port can be read on the pair and vice-versa.

Installation

  1. Install the dependencies. On your Debian-like Linux machine, run:
sudo apt install python3-serial linux-headers-`uname -r` gcc binutils make
  1. Inside the driver folder, run:
make clean all
sudo make modules_install
sudo make install
  1. Set read and write permissions on the pairs of devices to be used

Example: for the EmulatedPort 0 device:

sudo chmod 777 /dev/ttyEmulatedPort0
sudo chmod 777 /dev/ttyExogenous0

Uninstallation

Inside the 'driver' folder, run:

sudo make uninstall

Use

After the installation, by default, it will be instantiated on /dev many pairs of devices:

  • /dev/ttyEmulatedPort0 <---> /dev/ttyExogenous0
  • /dev/ttyEmulatedPort1 <---> /dev/ttyExogenous1 ...

And so on. Writing on one device will make its content ready to be read on the other pair, and vice-versa.

You MUST at least open the other pair port to start sending data to it.

Example

In a terminal window, execute the command below to put the emulated port waiting for incoming data

Open another terminal window and run the below command. On the first terminal Window. It should appear the message.

Screenshot_20240117_201825

Copyright

Creative Commons License
ChonIDE is licensed under a Creative Commons Attribution 4.0 International License. The licensor cannot revoke these freedoms as long as you follow the license terms:

  • Attribution — You must give appropriate credit like below:

FREITAS, Bruno Policarpo Toledo; LAZARIN, Nilson Mori; PANTOJA, Carlos Eduardo. Uma Proposta de Emulador de Portas Seriais para Sistemas Multiagentes Embarcados. In: Workshop-Escola de Sistemas de Agentes, seus Ambientes e Aplicações (WESAAC), 17. , 2023, Pelotas/RS. Anais [...]. Pelotas: UFPel, 2023 . p. 55-66. URL: https://zenodo.org/record/8329081

Bibtex

@inproceedings{freitas2023,
 author = {Freitas, Bruno Policarpo Toledo and Lazarin, Nilson Mori and Pantoja, Carlos Eduardo},
 title = {Uma {Proposta} de {Emulador} de {Portas} {Seriais} para {Sistemas} {Multiagentes} {Embarcados}},
 booktitle = {Anais do XVII Workshop-Escola de Sistemas de Agentes, seus Ambientes e Aplicações (WESAAC 2023)},
 location = {Pelotas/RS},
 year = {2023},
 pages = {55--66},
 publisher = {UFPel},
 address = {Pelotas, RS, Brasil},
 url = {https://zenodo.org/record/8329081}
}