Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
Hi,
Christian Magnusson:
> -if ( formatted_data[formatted_data_pointer+1] != ~data[i] ) {
>
> +if ( formatted_data[formatted_data_pointer+1] != (BYTE) ~data[i] )
> {
>
> Can't see why this should fix it, since both variables are BYTE from the
> beginning.
They don't stay that way.
This is C. C is not a high-level programming language. There is such a
thing as a "natural word size" in C, which is commonly called "int",
and to which smaller-sized integers are promoted pretty much any time
the compiler wants to.
This means that ~FOO will treat FOO as an integer (unless it's a long
int, of course).
Newer GCCs warn you about this if you set the appropriate options;
if "-Wall" doesn't complain about this, it's a gcc bug.
--
Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED]
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Owfs-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
static int OW_w_pios(const BYTE * data, const size_t size, const struct
parsedname *pn)
{
BYTE formatted_data[formatted_size];
-if ( formatted_data[formatted_data_pointer+1] != ~data[i] ) {
+if ( formatted_data[formatted_data_pointer+1] != (BYTE) ~data[i] )
{
Can't see why this should fix it, since both variables are BYTE from the
beginning. I wonder if there are any problem where formatted_data is set
too.
formatted_data[formatted_data_pointer+1] = ~data[i];
Is this working as it should? And the comparison fails?
/Christian
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric
Allen
Sent: den 6 oktober 2007 03:02
To: [email protected]
Subject: Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
Got it. The variable cleanup slightly changed the checking code and caused
it to fail every time. The attached patch against 2.6p7 makes the LCD work
again.
On 10/5/07, Eric Allen <[EMAIL PROTECTED]> wrote:
If I take p7 and revert modules/owlib/src/c/ow_2408.c back to p6 then the
LCD works. I'll play around with the code more this weekend.
On 10/4/07, Paul Alfille <[EMAIL PROTECTED]> wrote:
Nothing obvious on first perusal of the code. I'll dust off my LCD this
weekend and debug the problem.
Thank you again for finding release where support breaks.
When you say "garbled output" -- does that mean the correct number of
characters, just gibberish?
Paul Alfille
On 10/4/07, Eric Allen < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> wrote:
I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't.
On 10/4/07, Gregg Levine < [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> > wrote:
On 10/4/07, Eric Allen < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> wrote:
> I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and
> discovered that the LCD_H interface to a Hobby Boards LCD now produces
> garbled output. Clear seems to work the first time, but that's about all
the
> success I can get. I can confirm the same behavior on my mac using the USB
> 1-wire dongle. 2.6p6 works fine.
>
> -Eric
Hello!
Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is
this Mac an Intel family member or one of the surviving PowerPC family
members?
--
Gregg C Levine [EMAIL PROTECTED]
"This signature was once found posting rude
messages in English in the Moscow subway."
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Owfs-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/owfs-developers
<https://lists.sourceforge.net/lists/listinfo/owfs-developers>
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Owfs-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/owfs-developers
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Owfs-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/owfs-developers
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/___
Owfs-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
Wonderful. Applied. Quite a subtle problem. Who'd have thought that ~((unsigned char) val) was not of type (unsigned char). Paul Alfille On 10/5/07, Eric Allen <[EMAIL PROTECTED]> wrote: > > Got it. The variable cleanup slightly changed the checking code and caused > it to fail every time. The attached patch against 2.6p7 makes the LCD work > again. > > On 10/5/07, Eric Allen <[EMAIL PROTECTED]> wrote: > > > > If I take p7 and revert modules/owlib/src/c/ow_2408.c back to p6 then > > the LCD works. I'll play around with the code more this weekend. > > > > On 10/4/07, Paul Alfille <[EMAIL PROTECTED]> wrote: > > > > > > Nothing obvious on first perusal of the code. I'll dust off my LCD > > > this weekend and debug the problem. > > > Thank you again for finding release where support breaks. > > > > > > When you say "garbled output" -- does that mean the correct number of > > > characters, just gibberish? > > > > > > Paul Alfille > > > > > > On 10/4/07, Eric Allen < [EMAIL PROTECTED]> wrote: > > > > > > > > I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. > > > > > > > > On 10/4/07, Gregg Levine < [EMAIL PROTECTED] > wrote: > > > > > > > > > > On 10/4/07, Eric Allen < [EMAIL PROTECTED] > wrote: > > > > > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box > > > > > and > > > > > > discovered that the LCD_H interface to a Hobby Boards LCD now > > > > > produces > > > > > > garbled output. Clear seems to work the first time, but that's > > > > > about all the > > > > > > success I can get. I can confirm the same behavior on my mac > > > > > using the USB > > > > > > 1-wire dongle. 2.6p6 works fine. > > > > > > > > > > > > -Eric > > > > > > > > > > Hello! > > > > > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > > > > > > > > > > this Mac an Intel family member or one of the surviving PowerPC > > > > > family > > > > > members? > > > > > -- > > > > > Gregg C Levine [EMAIL PROTECTED] > > > > > "This signature was once found posting rude > > > > > messages in English in the Moscow subway." > > > > > > > > > > > > > > > - > > > > > This SF.net email is sponsored by: Splunk Inc. > > > > > Still grepping through log files to find problems? Stop. > > > > > Now Search log events and configuration files using AJAX and a > > > > > browser. > > > > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > > > ___ > > > > > Owfs-developers mailing list > > > > > [email protected] > > > > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > > > > > > > > > > > > > > > > - > > > > This SF.net email is sponsored by: Splunk Inc. > > > > Still grepping through log files to find problems? Stop. > > > > Now Search log events and configuration files using AJAX and a > > > > browser. > > > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > > ___ > > > > Owfs-developers mailing list > > > > [email protected] > > > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > > > > > > > > > > > > - > > > This SF.net email is sponsored by: Splunk Inc. > > > Still grepping through log files to find problems? Stop. > > > Now Search log events and configuration files using AJAX and a > > > browser. > > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > ___ > > > Owfs-developers mailing list > > > [email protected] > > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > > > > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
Got it. The variable cleanup slightly changed the checking code and caused it to fail every time. The attached patch against 2.6p7 makes the LCD work again. On 10/5/07, Eric Allen <[EMAIL PROTECTED]> wrote: > > If I take p7 and revert modules/owlib/src/c/ow_2408.c back to p6 then the > LCD works. I'll play around with the code more this weekend. > > On 10/4/07, Paul Alfille <[EMAIL PROTECTED]> wrote: > > > > Nothing obvious on first perusal of the code. I'll dust off my LCD this > > weekend and debug the problem. > > Thank you again for finding release where support breaks. > > > > When you say "garbled output" -- does that mean the correct number of > > characters, just gibberish? > > > > Paul Alfille > > > > On 10/4/07, Eric Allen < [EMAIL PROTECTED]> wrote: > > > > > > I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. > > > > > > On 10/4/07, Gregg Levine < [EMAIL PROTECTED] > wrote: > > > > > > > > On 10/4/07, Eric Allen < [EMAIL PROTECTED] > wrote: > > > > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > > > > > discovered that the LCD_H interface to a Hobby Boards LCD now > > > > produces > > > > > garbled output. Clear seems to work the first time, but that's > > > > about all the > > > > > success I can get. I can confirm the same behavior on my mac using > > > > the USB > > > > > 1-wire dongle. 2.6p6 works fine. > > > > > > > > > > -Eric > > > > > > > > Hello! > > > > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > > > > this Mac an Intel family member or one of the surviving PowerPC > > > > family > > > > members? > > > > -- > > > > Gregg C Levine [EMAIL PROTECTED] > > > > "This signature was once found posting rude > > > > messages in English in the Moscow subway." > > > > > > > > > > > > - > > > > This SF.net email is sponsored by: Splunk Inc. > > > > Still grepping through log files to find problems? Stop. > > > > Now Search log events and configuration files using AJAX and a > > > > browser. > > > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > > ___ > > > > Owfs-developers mailing list > > > > [email protected] > > > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > > > > > > > > > > > - > > > This SF.net email is sponsored by: Splunk Inc. > > > Still grepping through log files to find problems? Stop. > > > Now Search log events and configuration files using AJAX and a > > > browser. > > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > ___ > > > Owfs-developers mailing list > > > [email protected] > > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > > > > > > > - > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > ___ > > Owfs-developers mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > fix_lcd.patch Description: Binary data - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
If I take p7 and revert modules/owlib/src/c/ow_2408.c back to p6 then the LCD works. I'll play around with the code more this weekend. On 10/4/07, Paul Alfille <[EMAIL PROTECTED]> wrote: > > Nothing obvious on first perusal of the code. I'll dust off my LCD this > weekend and debug the problem. > Thank you again for finding release where support breaks. > > When you say "garbled output" -- does that mean the correct number of > characters, just gibberish? > > Paul Alfille > > On 10/4/07, Eric Allen <[EMAIL PROTECTED]> wrote: > > > > I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. > > > > On 10/4/07, Gregg Levine < [EMAIL PROTECTED] > wrote: > > > > > > On 10/4/07, Eric Allen < [EMAIL PROTECTED] > wrote: > > > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > > > > discovered that the LCD_H interface to a Hobby Boards LCD now > > > produces > > > > garbled output. Clear seems to work the first time, but that's about > > > all the > > > > success I can get. I can confirm the same behavior on my mac using > > > the USB > > > > 1-wire dongle. 2.6p6 works fine. > > > > > > > > -Eric > > > > > > Hello! > > > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > > > this Mac an Intel family member or one of the surviving PowerPC family > > > members? > > > -- > > > Gregg C Levine [EMAIL PROTECTED] > > > "This signature was once found posting rude > > > messages in English in the Moscow subway." > > > > > > > > > - > > > This SF.net email is sponsored by: Splunk Inc. > > > Still grepping through log files to find problems? Stop. > > > Now Search log events and configuration files using AJAX and a > > > browser. > > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > ___ > > > Owfs-developers mailing list > > > [email protected] > > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > > > > > > - > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > ___ > > Owfs-developers mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
Oh! I didn't realize that owfs actually hosted the ipk's too, including the older version. Thanks! On 10/5/07, Christian Magnusson <[EMAIL PROTECTED]> wrote: > > You can always download the packages manually with wget (or ipk directly) > from the directory: > > http://owfs.sourceforge.net/openwrt/kamikaze/packages/ > > > > ipkg remove owlib owfs owshell > > ipkg install > http://owfs.sourceforge.net/openwrt/kamikaze/packages/owfs_2.6p6-8_mipsel.ipk > http://owfs.sourceforge.net/openwrt/kamikaze/packages/owlib_2.6p6-8_mipsel.ipk > > > > /Christian > > > > > > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] *On Behalf Of *Eric Allen > *Sent:* den 5 oktober 2007 05:23 > *To:* [email protected] > *Subject:* Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H > > > > I'd like to revert back, but I can't seem to find a p6 ipk for OpenWRT > kamikaze. I'm trying to build my own, but I'm running into some issues with > the kamikaze build system and p6. > > In case somebody can help me out, the lines I'm getting that are causing > the error are the following: > /usr/bin/install -c -d /usr/bin > /usr/bin/install -c -m 755 owtap.tcl /usr/bin/owtap > /usr/bin/install: cannot create regular file `/usr/bin/owtap': Permission > denied > > On 10/4/07, *Gregg C Levine* <[EMAIL PROTECTED]> wrote: > > Hello! > Eric, like you I'm an ordinary user, and sometimes a developer. Of > hardware. > So I suggest you revert back to the working version for your OpenWRT > enabled > LinkSys box, and continue with it. However unless you do your own > development for the unit, and can make your own binaries then I would > suggest to debug the issue and naturally report back here with the obvious > solutions and a properly formatted patch. > > Paul we've got a problem here with these. While I do not use the LCD > interface routines, I will be ready to be able to test 2.6p7 for this > ongoing issue, naturally talking to regular One-Wire hardware. I'll know > more in a few more days. > > -- > Gregg C Levine [EMAIL PROTECTED] > "The Force will be with you. Always." Obi-Wan Kenobi > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Eric > Allen > Sent: Thursday, October 04, 2007 11:05 PM > To: [email protected] > Subject: Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H > > I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. > On 10/4/07, Gregg Levine < [EMAIL PROTECTED] > wrote: > On 10/4/07, Eric Allen <[EMAIL PROTECTED] > wrote: > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > > discovered that the LCD_H interface to a Hobby Boards LCD now produces > > garbled output. Clear seems to work the first time, but that's about all > the > > success I can get. I can confirm the same behavior on my mac using the > USB > > 1-wire dongle. 2.6p6 works fine. > > > > -Eric > > Hello! > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > this Mac an Intel family member or one of the surviving PowerPC family > members? > -- > Gregg C Levine [EMAIL PROTECTED] > "This signature was once found posting rude > messages in English in the Moscow subway." > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems?Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
You can always download the packages manually with wget (or ipk directly) from the directory: http://owfs.sourceforge.net/openwrt/kamikaze/packages/ ipkg remove owlib owfs owshell ipkg install http://owfs.sourceforge.net/openwrt/kamikaze/packages/owfs_2.6p6-8_mipsel.ip k http://owfs.sourceforge.net/openwrt/kamikaze/packages/owlib_2.6p6-8_mipsel.i pk /Christian From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Allen Sent: den 5 oktober 2007 05:23 To: [email protected] Subject: Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H I'd like to revert back, but I can't seem to find a p6 ipk for OpenWRT kamikaze. I'm trying to build my own, but I'm running into some issues with the kamikaze build system and p6. In case somebody can help me out, the lines I'm getting that are causing the error are the following: /usr/bin/install -c -d /usr/bin /usr/bin/install -c -m 755 owtap.tcl /usr/bin/owtap /usr/bin/install: cannot create regular file `/usr/bin/owtap': Permission denied On 10/4/07, Gregg C Levine <[EMAIL PROTECTED]> wrote: Hello! Eric, like you I'm an ordinary user, and sometimes a developer. Of hardware. So I suggest you revert back to the working version for your OpenWRT enabled LinkSys box, and continue with it. However unless you do your own development for the unit, and can make your own binaries then I would suggest to debug the issue and naturally report back here with the obvious solutions and a properly formatted patch. Paul we've got a problem here with these. While I do not use the LCD interface routines, I will be ready to be able to test 2.6p7 for this ongoing issue, naturally talking to regular One-Wire hardware. I'll know more in a few more days. -- Gregg C Levine [EMAIL PROTECTED] "The Force will be with you. Always." Obi-Wan Kenobi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Allen Sent: Thursday, October 04, 2007 11:05 PM To: [email protected] Subject: Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. On 10/4/07, Gregg Levine < <mailto:[EMAIL PROTECTED]> [EMAIL PROTECTED] > wrote: On 10/4/07, Eric Allen <[EMAIL PROTECTED] > wrote: > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > discovered that the LCD_H interface to a Hobby Boards LCD now produces > garbled output. Clear seems to work the first time, but that's about all the > success I can get. I can confirm the same behavior on my mac using the USB > 1-wire dongle. 2.6p6 works fine. > > -Eric Hello! Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is this Mac an Intel family member or one of the surviving PowerPC family members? -- Gregg C Levine [EMAIL PROTECTED] "This signature was once found posting rude messages in English in the Moscow subway." - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems?Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
I think I've found the offending lines in the Makefile for owtap. In p6 it was install: /usr/bin/install -c -d $(bindir) /usr/bin/install -c -m 755 owtap.tcl $(bindir)/owtap and p7 is install: /usr/bin/install -c -d $(DESTDIR)$(bindir) /usr/bin/install -c -m 755 owtap.tcl $(DESTDIR)$(bindir)/owtap On 10/4/07, Eric Allen <[EMAIL PROTECTED]> wrote: > > I'd like to revert back, but I can't seem to find a p6 ipk for OpenWRT > kamikaze. I'm trying to build my own, but I'm running into some issues with > the kamikaze build system and p6. > > In case somebody can help me out, the lines I'm getting that are causing > the error are the following: > /usr/bin/install -c -d /usr/bin > /usr/bin/install -c -m 755 owtap.tcl /usr/bin/owtap > /usr/bin/install: cannot create regular file `/usr/bin/owtap': Permission > denied > > > On 10/4/07, Gregg C Levine <[EMAIL PROTECTED]> wrote: > > > > Hello! > > Eric, like you I'm an ordinary user, and sometimes a developer. Of > > hardware. > > So I suggest you revert back to the working version for your OpenWRT > > enabled > > LinkSys box, and continue with it. However unless you do your own > > development for the unit, and can make your own binaries then I would > > suggest to debug the issue and naturally report back here with the > > obvious > > solutions and a properly formatted patch. > > > > Paul we've got a problem here with these. While I do not use the LCD > > interface routines, I will be ready to be able to test 2.6p7 for this > > ongoing issue, naturally talking to regular One-Wire hardware. I'll know > > more in a few more days. > > > > -- > > Gregg C Levine [EMAIL PROTECTED] > > "The Force will be with you. Always." Obi-Wan Kenobi > > > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf Of Eric > > Allen > > Sent: Thursday, October 04, 2007 11:05 PM > > To: [email protected] > > Subject: Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H > > > > I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. > > On 10/4/07, Gregg Levine < [EMAIL PROTECTED] > wrote: > > On 10/4/07, Eric Allen <[EMAIL PROTECTED] > wrote: > > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > > > discovered that the LCD_H interface to a Hobby Boards LCD now produces > > > garbled output. Clear seems to work the first time, but that's about > > all > > the > > > success I can get. I can confirm the same behavior on my mac using the > > USB > > > 1-wire dongle. 2.6p6 works fine. > > > > > > -Eric > > > > Hello! > > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > > this Mac an Intel family member or one of the surviving PowerPC family > > members? > > -- > > Gregg C Levine [EMAIL PROTECTED] > > "This signature was once found posting rude > > messages in English in the Moscow subway." > > > > - > > > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems?Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > ___ > > Owfs-developers mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > > > - > > > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > ___ > > Owfs-developers mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
Definitely not the correct number of characters. I even saw one instance where clear was shifting the entire display one character to the right. On 10/4/07, Paul Alfille <[EMAIL PROTECTED]> wrote: > > Nothing obvious on first perusal of the code. I'll dust off my LCD this > weekend and debug the problem. > Thank you again for finding release where support breaks. > > When you say "garbled output" -- does that mean the correct number of > characters, just gibberish? > > Paul Alfille > > On 10/4/07, Eric Allen <[EMAIL PROTECTED]> wrote: > > > > I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. > > > > On 10/4/07, Gregg Levine < [EMAIL PROTECTED] > wrote: > > > > > > On 10/4/07, Eric Allen < [EMAIL PROTECTED] > wrote: > > > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > > > > discovered that the LCD_H interface to a Hobby Boards LCD now > > > produces > > > > garbled output. Clear seems to work the first time, but that's about > > > all the > > > > success I can get. I can confirm the same behavior on my mac using > > > the USB > > > > 1-wire dongle. 2.6p6 works fine. > > > > > > > > -Eric > > > > > > Hello! > > > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > > > this Mac an Intel family member or one of the surviving PowerPC family > > > members? > > > -- > > > Gregg C Levine [EMAIL PROTECTED] > > > "This signature was once found posting rude > > > messages in English in the Moscow subway." > > > > > > > > > - > > > This SF.net email is sponsored by: Splunk Inc. > > > Still grepping through log files to find problems? Stop. > > > Now Search log events and configuration files using AJAX and a > > > browser. > > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > ___ > > > Owfs-developers mailing list > > > [email protected] > > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > > > > > > - > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > ___ > > Owfs-developers mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
I'd like to revert back, but I can't seem to find a p6 ipk for OpenWRT kamikaze. I'm trying to build my own, but I'm running into some issues with the kamikaze build system and p6. In case somebody can help me out, the lines I'm getting that are causing the error are the following: /usr/bin/install -c -d /usr/bin /usr/bin/install -c -m 755 owtap.tcl /usr/bin/owtap /usr/bin/install: cannot create regular file `/usr/bin/owtap': Permission denied On 10/4/07, Gregg C Levine <[EMAIL PROTECTED]> wrote: > > Hello! > Eric, like you I'm an ordinary user, and sometimes a developer. Of > hardware. > So I suggest you revert back to the working version for your OpenWRT > enabled > LinkSys box, and continue with it. However unless you do your own > development for the unit, and can make your own binaries then I would > suggest to debug the issue and naturally report back here with the obvious > solutions and a properly formatted patch. > > Paul we've got a problem here with these. While I do not use the LCD > interface routines, I will be ready to be able to test 2.6p7 for this > ongoing issue, naturally talking to regular One-Wire hardware. I'll know > more in a few more days. > > -- > Gregg C Levine [EMAIL PROTECTED] > "The Force will be with you. Always." Obi-Wan Kenobi > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Eric > Allen > Sent: Thursday, October 04, 2007 11:05 PM > To: [email protected] > Subject: Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H > > I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. > On 10/4/07, Gregg Levine <[EMAIL PROTECTED] > wrote: > On 10/4/07, Eric Allen <[EMAIL PROTECTED] > wrote: > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > > discovered that the LCD_H interface to a Hobby Boards LCD now produces > > garbled output. Clear seems to work the first time, but that's about all > the > > success I can get. I can confirm the same behavior on my mac using the > USB > > 1-wire dongle. 2.6p6 works fine. > > > > -Eric > > Hello! > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > this Mac an Intel family member or one of the surviving PowerPC family > members? > -- > Gregg C Levine [EMAIL PROTECTED] > "This signature was once found posting rude > messages in English in the Moscow subway." > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems?Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
Nothing obvious on first perusal of the code. I'll dust off my LCD this weekend and debug the problem. Thank you again for finding release where support breaks. When you say "garbled output" -- does that mean the correct number of characters, just gibberish? Paul Alfille On 10/4/07, Eric Allen <[EMAIL PROTECTED]> wrote: > > I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. > > On 10/4/07, Gregg Levine <[EMAIL PROTECTED] > wrote: > > > > On 10/4/07, Eric Allen <[EMAIL PROTECTED] > wrote: > > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > > > discovered that the LCD_H interface to a Hobby Boards LCD now produces > > > garbled output. Clear seems to work the first time, but that's about > > all the > > > success I can get. I can confirm the same behavior on my mac using the > > USB > > > 1-wire dongle. 2.6p6 works fine. > > > > > > -Eric > > > > Hello! > > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > > this Mac an Intel family member or one of the surviving PowerPC family > > members? > > -- > > Gregg C Levine [EMAIL PROTECTED] > > "This signature was once found posting rude > > messages in English in the Moscow subway." > > > > > > - > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > ___ > > Owfs-developers mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > > > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > > - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
Hello! Eric, like you I'm an ordinary user, and sometimes a developer. Of hardware. So I suggest you revert back to the working version for your OpenWRT enabled LinkSys box, and continue with it. However unless you do your own development for the unit, and can make your own binaries then I would suggest to debug the issue and naturally report back here with the obvious solutions and a properly formatted patch. Paul we've got a problem here with these. While I do not use the LCD interface routines, I will be ready to be able to test 2.6p7 for this ongoing issue, naturally talking to regular One-Wire hardware. I'll know more in a few more days. -- Gregg C Levine [EMAIL PROTECTED] "The Force will be with you. Always." Obi-Wan Kenobi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Allen Sent: Thursday, October 04, 2007 11:05 PM To: [email protected] Subject: Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. On 10/4/07, Gregg Levine <[EMAIL PROTECTED] > wrote: On 10/4/07, Eric Allen <[EMAIL PROTECTED] > wrote: > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > discovered that the LCD_H interface to a Hobby Boards LCD now produces > garbled output. Clear seems to work the first time, but that's about all the > success I can get. I can confirm the same behavior on my mac using the USB > 1-wire dongle. 2.6p6 works fine. > > -Eric Hello! Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is this Mac an Intel family member or one of the surviving PowerPC family members? -- Gregg C Levine [EMAIL PROTECTED] "This signature was once found posting rude messages in English in the Moscow subway." - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
I tried p6 and p7 on the Intel mac. p6 works fine, p7 doesn't. On 10/4/07, Gregg Levine <[EMAIL PROTECTED]> wrote: > > On 10/4/07, Eric Allen <[EMAIL PROTECTED]> wrote: > > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > > discovered that the LCD_H interface to a Hobby Boards LCD now produces > > garbled output. Clear seems to work the first time, but that's about all > the > > success I can get. I can confirm the same behavior on my mac using the > USB > > 1-wire dongle. 2.6p6 works fine. > > > > -Eric > > Hello! > Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is > this Mac an Intel family member or one of the surviving PowerPC family > members? > -- > Gregg C Levine [EMAIL PROTECTED] > "This signature was once found posting rude > messages in English in the Moscow subway." > > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ___ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers > - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
Re: [Owfs-developers] owfs 2.6p7 causing trouble with LCD_H
On 10/4/07, Eric Allen <[EMAIL PROTECTED]> wrote: > I just tried upgrading to owfs 2.6p7 on my OpenWRT linksys box and > discovered that the LCD_H interface to a Hobby Boards LCD now produces > garbled output. Clear seems to work the first time, but that's about all the > success I can get. I can confirm the same behavior on my mac using the USB > 1-wire dongle. 2.6p6 works fine. > > -Eric Hello! Eric here's an odd suggestion. Try using 2.6p7 on your Mac. Now is this Mac an Intel family member or one of the surviving PowerPC family members? -- Gregg C Levine [EMAIL PROTECTED] "This signature was once found posting rude messages in English in the Moscow subway." - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
