<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Commenti a: Open3600 revised</title>
	<atom:link href="http://fabrizio.zellini.org/open3600-revised/feed" rel="self" type="application/rss+xml" />
	<link>http://fabrizio.zellini.org/open3600-revised</link>
	<description>L'uomo deve saper far tutto, la specializzazione è delle formiche.</description>
	<pubDate>Wed, 10 Mar 2010 16:53:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Di: Tony</title>
		<link>http://fabrizio.zellini.org/open3600-revised#comment-1017</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Mon, 14 Sep 2009 07:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://fabrizio.zellini.org/?p=68#comment-1017</guid>
		<description>We are having very high winds today, over 100 km/h.  I noticed that the maximum wind speed recorded by open3600 was 99.8 and thought that a little peculiar.  It seems that the decoding does not include 100's.

To allow for wind speeds greater than 100, I have patched rw3600.c as follows:

471c471
&lt;     ws_station = (tempdata[1] &gt;&gt; 4) * 10 + (tempdata[1] &#038; 0xF) +  
(tempdata[0] &gt;&gt; 4) * 0.1 + (tempdata[1] &#038; 0xF) * 0.01;
---
 &gt;     ws_station = (tempdata[2] &#038; 0xF) * 100 + (tempdata[1] &gt;&gt; 4) *  
10 + (tempdata[1] &#038; 0xF) + (tempdata[0] &gt;&gt; 4) * 0.1 + (tempdata[0] &#038;  
0xF) * 0.01;
531c531
&lt;         ws = (tempdata[1] &#038; 0xF) * 10 + (tempdata[0] &gt;&gt; 4) +  
(tempdata[0] &#038; 0xF) * 0.1;
---
 &gt;         ws = (tempdata[1] &gt;&gt; 4) * 100 + (tempdata[1] &#038; 0xF) * 10 +  
(tempdata[0] &gt;&gt; 4) + (tempdata[0] &#038; 0xF) * 0.1;
539c539
&lt;         ws = (tempdata[1] &gt;&gt; 4) * 10 + (tempdata[1] &#038; 0xF) +  
(tempdata[0] &gt;&gt; 4) * 0.1;
---
 &gt;         ws = (tempdata[2] &#038; 0xF) * 100 + (tempdata[1] &gt;&gt; 4) * 10 +  
(tempdata[1] &#038; 0xF) + (tempdata[0] &gt;&gt; 4) * 0.1;
</description>
		<content:encoded><![CDATA[<p>We are having very high winds today, over 100 km/h.  I noticed that the maximum wind speed recorded by open3600 was 99.8 and thought that a little peculiar.  It seems that the decoding does not include 100&#8217;s.</p>
<p>To allow for wind speeds greater than 100, I have patched rw3600.c as follows:</p>
<p>471c471<br />
<     ws_station = (tempdata[1] >> 4) * 10 + (tempdata[1] &#038; 0xF) +  <br />
(tempdata[0] >> 4) * 0.1 + (tempdata[1] &#038; 0xF) * 0.01;<br />
&#8212;<br />
 >     ws_station = (tempdata[2] &#038; 0xF) * 100 + (tempdata[1] >> 4) *  <br />
10 + (tempdata[1] &#038; 0xF) + (tempdata[0] >> 4) * 0.1 + (tempdata[0] &#038;  <br />
0xF) * 0.01;<br />
531c531<br />
<         ws = (tempdata[1] &#038; 0xF) * 10 + (tempdata[0] >> 4) +  <br />
(tempdata[0] &#038; 0xF) * 0.1;<br />
&#8212;<br />
 >         ws = (tempdata[1] >> 4) * 100 + (tempdata[1] &#038; 0xF) * 10 +  <br />
(tempdata[0] >> 4) + (tempdata[0] &#038; 0xF) * 0.1;<br />
539c539<br />
<         ws = (tempdata[1] >> 4) * 10 + (tempdata[1] &#038; 0xF) +  <br />
(tempdata[0] >> 4) * 0.1;<br />
&#8212;<br />
 >         ws = (tempdata[2] &#038; 0xF) * 100 + (tempdata[1] >> 4) * 10 +  <br />
(tempdata[1] &#038; 0xF) + (tempdata[0] >> 4) * 0.1;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Tony</title>
		<link>http://fabrizio.zellini.org/open3600-revised#comment-814</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Sun, 29 Mar 2009 03:20:28 +0000</pubDate>
		<guid isPermaLink="false">http://fabrizio.zellini.org/?p=68#comment-814</guid>
		<description>Thanks Jay, your comment about dropping the compiler option certainly helped me out.

Best regards,
Tony</description>
		<content:encoded><![CDATA[<p>Thanks Jay, your comment about dropping the compiler option certainly helped me out.</p>
<p>Best regards,<br />
Tony</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Jay</title>
		<link>http://fabrizio.zellini.org/open3600-revised#comment-417</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Tue, 23 Dec 2008 17:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://fabrizio.zellini.org/?p=68#comment-417</guid>
		<description>Hi, sad; I received no reply so far. On the other hand, I found the resolution. Dropping the compiler option "-O3" did the trick.

Jay</description>
		<content:encoded><![CDATA[<p>Hi, sad; I received no reply so far. On the other hand, I found the resolution. Dropping the compiler option &#8220;-O3&#8243; did the trick.</p>
<p>Jay</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Jay</title>
		<link>http://fabrizio.zellini.org/open3600-revised#comment-389</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Sat, 06 Dec 2008 15:32:21 +0000</pubDate>
		<guid isPermaLink="false">http://fabrizio.zellini.org/?p=68#comment-389</guid>
		<description>Hello, I have been compiling your patched version successfully, but neither of the binaries would produce any outputs. In log-level 5 they stop at "open_weatherstation".

The original version (0.2) works no problem, but there the wu3600 is missing. I acctually am looking for cw3600. You don't happen to have the source of it handy? A binary would be even better.

Regards, Jay</description>
		<content:encoded><![CDATA[<p>Hello, I have been compiling your patched version successfully, but neither of the binaries would produce any outputs. In log-level 5 they stop at &#8220;open_weatherstation&#8221;.</p>
<p>The original version (0.2) works no problem, but there the wu3600 is missing. I acctually am looking for cw3600. You don&#8217;t happen to have the source of it handy? A binary would be even better.</p>
<p>Regards, Jay</p>
]]></content:encoded>
	</item>
</channel>
</rss>
