आपको डिवाइस पर सही रीड राइट्स लिखने की जरूरत है, आप इसे देख सकते हैं:
$ls -l /dev/[serial device]
मैंने आपके द्वारा पाई गई स्क्रिप्ट पर भरोसा किया और कुछ संशोधन किए।
अब तक मैंने जिन विकास प्रणालियों का उपयोग किया है, उनके लिए उनकी आवश्यकता थी:
- कोई भी समानता और
- एक स्टॉप बिट
वे मान स्क्रिप्ट में डिफ़ॉल्ट हैं।
तो कनेक्ट करने के लिए, आप इसे निम्नानुसार सरल रूप से उपयोग कर सकते हैं:
./connect.sh /dev/[serial device] [baud speed]
उदाहरण:
$./connect.sh /dev/ttyUSB0 19200
स्क्रिप्ट:
#!/bin/bash
# connect.sh
#Taken from example modified by: ihatetoregister
# On stack exchange, thread:
# http://unix.stackexchange.com/questions/22545/how-to-connect-to-a-serial-port-as-simple-as-using-ssh
# Modified by Rafael Karosuo <rafaelkarosuo@gmail.com>
# - parity enabling and amount of stop bits
# - no execution without minimum params
# - exit code for stty
# - bgPid fix, used $! instead of $? to take the PID of cat proc in background.
# - exit command to end the program
# - CR termination and strip of NL added by READ command, in order to make $cmd\r\n format instead of \n$cmd\n
# Usage:
# $./connect.sh <device> <port speed> [# Stop bits] [parity]
# Stop bits 1|2
# Parity even | odd
# If no last two params, then default values stopbits=1, parity=disab
# Example:
# connect.sh /dev/ttyS0 9600 1 even, this will use 1 stop bit and even parity
# connect.sh /dev/ttyS0 9600, this will take default values for parity and stopbit
#Check if at least port and baud params provided
if [ -z "$1" ] || [ -z "$2" ]; then
printf "\nusage: ./connect.sh <device> <port speed> [# Stop bits 1|2] [parity even|odd]\n\tNeed to provide at least port and baud speed parameters.\n\texample:connect.sh /dev/ttyS0 9600\n\n"
exit 1;
else
case "$3" in
2) stopb="cstopb";;
*) stopb="-cstopb";;
esac
if [ "$4" = "even" ]; then
par="-parodd"
elif [ "$4" = "odd" ]; then
par="parodd"
else
par="-parity"
fi
printf "\nThen stty -F $1 $2 $stopb $par\n";
fi
# Set up device
stty -F "$1" "$2" "$stopb" "$par" -icrnl
# Check if error ocurred
if [ "$?" -ne 0 ]; then
printf "\n\nError ocurred, stty exited $?\n\n"
exit 1;
fi
# Let cat read the device $1 in the background
cat -v "$1" &
# Capture PID of background process so it is possible to terminate it when done
bgPid="$!"
# Read commands from user, send them to device $1
while [ "$cmd" != "exit" ]
do
read cmd
echo -e "\x08$cmd\x0D" > "$1" #strip off the \n that read puts and adds \r for windows like LF
done
# Terminate background read process
kill "$bgPid"
पुनश्च: आपको यह जानना होगा कि आपके रिसीवर सिस्टम का उपयोग किस तरह की लाइन फीड के रूप में किया जा रहा है क्योंकि यह निर्धारित करेगा कि आपको मेरे मामले में कमांड भेजने की आवश्यकता होगी, जिसमें मुझे एलएफ जैसी विंडोज की जरूरत है, इसका मतलब है कि मुझे भेजने की आवश्यकता है
command\r
ASCII के लिए मान:
- LF: 0Ah, लाइन फ़ीड "\ n"
- सीआर: 0 डीएच, कैरिज रिटर्न "\ r"
- बीएस: 08 एच, बैक स्पेस "<-"