You try something along the lines of netcat? Since you can look at the info via telnet client, you can pipe it to netcat. Netcat will send it over the network to a listening netcat (on the pi) that you can redirect it to the serial port that your SteppIR controller. So in very loose linux speak (since the specifics you give are sorta vague)
On your server that the K3 is on: cat /dev/serial | nc ip.of.rasp.pi port On your pi: nc -v -l -p port | /dev/SteppIR Where 'port' is whatever port you want to send this across. Look at the man pages of netcat (nc) for all the neat options that you'll need to make this work. I've never passed serial traffic over, but netcat works for pretty much anything you pipe to it including a raw binary streams. Its cool stuff, like a swiss army knife for network communicatons. Frank KG6EYC On Sat, Nov 16, 2013 at 5:27 PM, Martin <[email protected]> wrote: > Elecrafters, > has anyone done this or has some advice: > > I plan to forward the frequency information from my K3 -wich is hooked to > a Windows machine - via Network to the remote SteppIR controler. The > controller connects to a RaspberryPI. > So far, i can redirect the K3's serial output via TCP to a Linux machine > and watch the information using a telnet client. What i'm looking for is a > way to pass this output to a raspberryPI and hook the controller to the > PI's serial output. > > I tried ser2net on the raspberry, but no success. > Anyone? > > -- > > Ohne CW ist es nur CB.. > > 73, Martin DM4iM > ______________________________________________________________ > Elecraft mailing list > Home: http://mailman.qth.net/mailman/listinfo/elecraft > Help: http://mailman.qth.net/mmfaq.htm > Post: mailto:[email protected] > > This list hosted by: http://www.qsl.net > Please help support this email list: http://www.qsl.net/donate.html > -- CW: NAQCC #6554 | SKCC #10435 | FISTS #16155 | SOC #1038 | FPQRP #3186 Digital: FHC #4224 | 30MDG #6370 | DMC #5698 Gear: K3 #7164 | KX3 #1787 http://vadept.com ______________________________________________________________ Elecraft mailing list Home: http://mailman.qth.net/mailman/listinfo/elecraft Help: http://mailman.qth.net/mmfaq.htm Post: mailto:[email protected] This list hosted by: http://www.qsl.net Please help support this email list: http://www.qsl.net/donate.html

