Read line from serial device with BASH


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Read line from serial device with BASH
# 8  
Old 11-03-2016
Check what it actually sends, esp. the terminator/delimiter. cat the device and pipe that through an octal or hex dumper.
# 9  
Old 11-03-2016
You might also want to consider using:
Code:
printf 'add read 0\n\r'

instead of:
Code:
echo "add read 0" > /dev/ttyACM0
echo -e '\r' > /dev/ttyACM0

Note that the two echo commands each open and close the device and each prints a <newline> character that might neither be needed nor desirable from the second echo.

Alternatively, you might want to consider opening the device once at the start of your script using exec to open (and hold open) your device:
Code:
exec <> /dev/ttyACM0

(replacing standard input for the entire script in this case, but a different file descriptor can also be specified if some other file is being fed into your script). Then you could consider using the stty utility to set appropriate parameters for your device such as icrnl or -icrnl and igncr or -igncr (depending on whether your device sends <carriage-return> and/or <newline> characters as line terminators when you read data from your device) and ocrnl or -ocrnl, onlcr or -onlcr, and onocr or -onocr depending on what it wants to see as line terminators in commands it receives from your script. (And, of course, check the stty man page on your system for other operands that might simplify using your device.)
# 10  
Old 11-03-2016
I thought about proposing using the stty utility as well but wasn't sure if it would work/apply, as we are dealing with a USB GPIO device.
# 11  
Old 11-03-2016
Quote:
Originally Posted by RudiC
I thought about proposing using the stty utility as well but wasn't sure if it would work/apply, as we are dealing with a USB GPIO device.
Using stty might or might not work, but it is really easy to find out...

If the command stty < /dev/ttyACM0 works (printing the current settings for the device), it will work. If it exits with a non-zero exit status and prints a diagnostic similar to:
Code:
stty: stdin isn't a terminal

then it won't work.
# 12  
Old 11-04-2016
Thanks Don. I will try your suggestions today. One question: If I use
Code:
exec <> /dev/ttyACM0

to open the port for the duration of the script, what is the command for closing it when I exit the script?
# 13  
Old 11-04-2016
There is no need, it will close itself on exit, but:

Code:
exec <&-

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

With script bash, read file line per line starting at the end

Hello, I'm works on Ubuntu server My goal : I would like to read file line per line, but i want to started at the end of file. Currently, I use instructions : while read line; do COMMAND done < /var/log/apache2/access.log But, the first line, i don't want this. The file is long... (5 Replies)
Discussion started by: Fuziion
5 Replies

2. Shell Programming and Scripting

[BASH] read 'line' issue with leading tabs and virtual line breaks

Heyas I'm trying to read/display a file its content and put borders around it (tui-cat / tui-cat -t(ypwriter). The typewriter-part is a 'bonus' but still has its own flaws, but thats for later. So in some way, i'm trying to rewrite cat using bash and other commands. But sadly it fails on... (2 Replies)
Discussion started by: sea
2 Replies

3. Shell Programming and Scripting

Bash script to read a file from particular line till required line and process

Hi All, Am trying to write wrapper shell/bash script on a utility tool for which i need to pass 2 files as arugment to execute utility tool. Wraper script am trying is to do with above metion 2 files. utility tool accepts : a. userinfo file : which contains username b. item file : which... (2 Replies)
Discussion started by: Optimus81
2 Replies

4. Shell Programming and Scripting

Bash while read line

I have a script batch_vmdgenpqr.sh which has a problem: #!/bin/bash while read line do vmd.sh -dispdev text -e vmdgenpqr.tcl -args $line done<file The do line calls another program, VMD (called by vmd.sh) and it requires the values from $line, but this is not recognised by... (3 Replies)
Discussion started by: chrisjorg
3 Replies

5. SCO

Modifying serial printers device

I am trying to change one of my serial printers from /dev/ttyr002 to /dev/ttyr014: lpstat -s device for check3: /dev/ttyr002 device for check4: /dev/ttyr002 I changed the tty setting for check3 in: /etc/printcap /var/spool/lp/admins/lp/printers/check3 to /dev/ttyr014 Then I get:... (4 Replies)
Discussion started by: herot
4 Replies

6. Shell Programming and Scripting

bash: read file line by line (lines have '\0') - not full line has read???

I am using the while-loop to read a file. The file has lines with null-terminated strings (words, actually.) What I have by that reading - just a first word up to '\0'! I need to have whole string up to 'new line' - (LF, 10#10, 16#A) What I am doing wrong? #make file 'grb' with... (6 Replies)
Discussion started by: alex_5161
6 Replies

7. Programming

Problem with read data from serial device

I have problem with C programming. I want to send & receive data through serial communication. I send data(command) to device to get data from device but when receive data, it can't get altogether of data. It get only some data. What should I do to get altogether of data? If all of... (7 Replies)
Discussion started by: noppon_s
7 Replies

8. Ubuntu

Ubuntu 9.04 Serial application to telnet to serial device

Hello! I am working on an application which reads environmental instruments which have serial ports. The application requires a serial port to be present to talk to the device (i.e. /dev/ttyS0 ). In some instances the environmental devices will be 100's of yards away from the computer, so a... (5 Replies)
Discussion started by: mvona
5 Replies

9. Linux

Device serial number

Hey! I'm trying to figure out a sollution for a problem I have at my company with an Iomega MiniMax 500 GB USB disk. If i run cat /proc/bus/usb/devices I get this information: T: Bus=01 Lev=02 Prnt=04 Port=00 Cnt=01 Dev#= 5 Spd=480 MxCh= 0 D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00... (2 Replies)
Discussion started by: noratx
2 Replies

10. UNIX for Dummies Questions & Answers

serial port device path

hi. Im trying to install a switch. And the manual says i should type a command including a SerialPortDevicePath. which is the filepath to serial port used for connection. However.. nothing about how to find this info. Could anyone help me where to find this path? thx mr.T (6 Replies)
Discussion started by: tyskertøs
6 Replies
Login or Register to Ask a Question