Re: [Owfs-developers] Problem running Python examples

2010-08-02 Thread ziggy
OK, I had to do a bunch of stuff to get an owfs package built for my current system (Seagate DockStar - an ARM5 PogoPlug variant), so am using the new 2.8p0, along with Python 2.6.5. Try making this change to /usr/lib/python2.6/site-packages/ow/__init__.py (or wherever your's lives): The change

Re: [Owfs-developers] New release 2.8p0

2010-08-02 Thread Paul Alfille
Ahh, sorry Can you change line 81 of module/owserver/src/c/to_client.c from TrafficOutFD("to server data",io[1].iov_base,io[1].iov_leng,file_descriptor); to TrafficOutFD("to server data",io[1].iov_base,io[1].iov_len,file_descriptor); (That is, change the iov_leng to iov_len.) O

Re: [Owfs-developers] New release 2.8p0

2010-08-02 Thread Jim Kusznir
My attempts to build it so far on my dev machine fail: gcc -DHAVE_CONFIG_H -I. -I../../../../src/include-I../include -I../../../owlib/src/include -L../../../owlib/src/c -fexceptions -Wall -W -Wundef -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wstrict-prototypes -Wredundant-decls -D_FIL

Re: [Owfs-developers] New release 2.8p0

2010-08-02 Thread Jim Kusznir
You use the same options you would use on the command line in the in options when the bus is initialized through the python command. --Jim On Sun, Aug 1, 2010 at 9:39 PM, Joshua J. Kugler wrote: > On Sunday 01 August 2010, Paul Alfille elucidated thus: >> Release notes 2.8p0 >> >> 1. W1 (the lin

Re: [Owfs-developers] Problem running Python examples

2010-08-02 Thread Jim Kusznir
We bumped ours up pretty huge, but it still hit it. When we did some debugging, there was an infinite recursion at the point I pointed out in the previously-cited thread. --Jim On Mon, Aug 2, 2010 at 7:04 AM, Paul Davis wrote: > My python is a bit rusty (actually kind of like the shock absorber

Re: [Owfs-developers] Problem running Python examples

2010-08-02 Thread Paul Davis
My python is a bit rusty (actually kind of like the shock absorber bolts on my truck, but that's another story...), but what value does sys.getrecursionlimit() give you? And does sys.setrecursionlimit(something_alot_bigger) help, cause a different error, crash python, etc.? On Aug 2, 201