Table of Contents

Lab04 - Serial port access

Use cat and picocom for serial line access.

Communcation methods

cat - old method

cat allows to read data from a file or device. The Nucleo board will be present at /dev/ttyACM0. The default speed of the serial port set by the kernel driver is 115200 bd.

cat /dev/ttyACM0

The main issue with serial communication is the proper settings of the communication parameters such as:

Unix environment allows to control the serial line settings by stty command.

stty -F /dev/ttyACM0 -brkint -icrnl -imaxbel -opost -onlcr -isig -icanon -iexten -echo -echoe -echoctl -echoke 115200

picocom

Perform the same task with picocom terminal (help man piccocom). Don't forget to set the proper baud rate (115200).

C app

Serial port open

int hSerial = open( "/dev/ttyUSB0", O_RDWR| O_NONBLOCK | O_NDELAY );
// h = handle

Serial port settings

struct termios o_tty;
// o = object
memset (&o_tty, 0, sizeof o_tty);
iRetVal = tcgetattr (hSerial , &o_tty);
Now, modify the settings appropriately. The best guide for serial port programming in Unix is here: serial port programming guide.

Serial port write

unsigned char chArrCmd[] = {'*', 'I', 'D', 'N', '?', '\r', '\n', '\0'};
int n_written = write( hSerial, chArrCmd, sizeof(chArrCmd)-1 ); // why -1?

Serial port read

char chArrBuf [256];
memset (&chArrBuf , '\0', sizeof(chArrBuf) );

int n = read( hSerial, &chArrBuf , sizeof(chArrBuf) );

Serial port close

close(hSerial);

Recommended includes for this task are: stdio.h, stdlib.h, string.h, unistd.h, fcntl.h, errno.h, termios.h.

Lab Instructions

stty -F /dev/ttyACM0 -brkint -icrnl -imaxbel -opost -onlcr -isig -icanon -iexten -echo -echoe -echoctl -echoke 115200

Lab Tasks

#include<unistd.h>
unsigned int microsecond = 1000000;
usleep(3 * microsecond);//sleeps for 3 second