UDPTerminal

Discussion to talk about software related topics only.
Post Reply
bbracken
Posts: 54
Joined: Mon Jun 23, 2008 11:21 am
Location: Southern California
Contact:

UDPTerminal

Post by bbracken »

It certainly would be nice if UDPTerminal had a mode to capture incoming packets (just the data portion). I always need to get data out of an NB for testing and debugging purposes. Typically I printf to the serial port (usually in comma delimited format) and have to capture the serial data via HyperTerm or MTTY (which by the way periodically causes my laptop to run out of virtual memory -- HyperTerm doesn't exhibit this problem). If UDPTerminal had a capture to file capability, I would be able to simply send my command delimited data via UDP. This would certainly be a lot faster.

bb
User avatar
Chris Ruff
Posts: 222
Joined: Thu Apr 24, 2008 4:09 pm
Location: topsail island, nc
Contact:

Re: UDPTerminal

Post by Chris Ruff »

:shock: Run out of virtual memory?? Strange, I might run 3 of these at once all of the time and I have never seen that problem. (But I don't use eclipse)

Chris
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand
bbracken
Posts: 54
Joined: Mon Jun 23, 2008 11:21 am
Location: Southern California
Contact:

Re: UDPTerminal

Post by bbracken »

Chris,

The MTTY issue isn't using an Eclipse generated application. I think it has to do with the USB serial. Strange thing is that it never happens if I use HyperTerm.

Bill Bracken
thomastaranowski
Posts: 82
Joined: Sun May 11, 2008 2:17 pm
Location: Los Angeles, CA
Contact:

Re: UDPTerminal

Post by thomastaranowski »

Bill, I feel your pain. Usually I just work up a quick python script to capture, and print the results to stdio. It ends up being a 2-3 liner, which I'd paste here if I had it handy on my laptop. The long version ends up being something like this (untested):

from socket import *
s = socket(AF_INET, SOCK_DGRAM)
host = "localhost"
port = 514
buf = 1470
addr = (host, port)
s.bind(addr)
while 1:
data, addr = s.recvfrom(buf)
print buf
bbracken
Posts: 54
Joined: Mon Jun 23, 2008 11:21 am
Location: Southern California
Contact:

Re: UDPTerminal

Post by bbracken »

When I get some time I think I will implement a class for UDPLogging. You create an instance (or multiple instances) of the UDPLogger in the NB. I'll then write a PC app which will be able to ask for all the loggers defined. You can then dynamically change IP address of the logger, enable/disable it, change the port... or whatever else needs to be done. I've done something close on the NB already and on the PC end I just have a console application where you specify a port to receive on and a filename if you want to store the data received.
Post Reply