<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[New firmware release version v1.9.2.b2]]></title><description><![CDATA[<p dir="auto">Hello everyone,</p>
<p dir="auto">This release contains the same changes as <em>v1.9.1.b1</em> and <strong>fixes</strong> the issue with the <em>safe boot</em> introduced there.</p>
<p dir="auto">The full change log is:</p>
<ul>
<li>esp32: Fix an SSL / TLS non-blocking socket problem. Thanks to <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/1855">@peterson79</a> for this contribution!</li>
<li>esp32: Remove all usages of unnamed unions.</li>
<li>esp32: Make sure that the LoRaWAN Tx done event is always triggered after the Rx complete event.</li>
<li>esp32: Add fileno method to the socket class.</li>
<li>esp32: Also store the channels, the channel mask and the ADR counters in the LoRa NVRAM.</li>
<li>esp32: Cast os.getfree() value to uint64_t to report correct sizes &gt; 2GB. Thanks to <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/98">@robert-hh</a> for this!</li>
</ul>
<p dir="auto">Cheers,<br />
Daniel</p>
]]></description><link>https://forum.pycom.io/topic/1951/new-firmware-release-version-v1-9-2-b2</link><generator>RSS for Node</generator><lastBuildDate>Thu, 11 Jun 2026 19:12:31 GMT</lastBuildDate><atom:link href="https://forum.pycom.io/topic/1951.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 14 Oct 2017 08:42:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to New firmware release version v1.9.2.b2 on Sun, 15 Oct 2017 12:57:07 GMT]]></title><description><![CDATA[<p dir="auto">Hello everyone,</p>
<p dir="auto">This release contains the same changes as <em>v1.9.1.b1</em> and <strong>fixes</strong> the issue with the <em>safe boot</em> introduced there.</p>
<p dir="auto">The full change log is:</p>
<ul>
<li>esp32: Fix an SSL / TLS non-blocking socket problem. Thanks to <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/1855">@peterson79</a> for this contribution!</li>
<li>esp32: Remove all usages of unnamed unions.</li>
<li>esp32: Make sure that the LoRaWAN Tx done event is always triggered after the Rx complete event.</li>
<li>esp32: Add fileno method to the socket class.</li>
<li>esp32: Also store the channels, the channel mask and the ADR counters in the LoRa NVRAM.</li>
<li>esp32: Cast os.getfree() value to uint64_t to report correct sizes &gt; 2GB. Thanks to <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/98">@robert-hh</a> for this!</li>
</ul>
<p dir="auto">Cheers,<br />
Daniel</p>
]]></description><link>https://forum.pycom.io/post/11818</link><guid isPermaLink="true">https://forum.pycom.io/post/11818</guid><dc:creator><![CDATA[daniel]]></dc:creator><pubDate>Sun, 15 Oct 2017 12:57:07 GMT</pubDate></item><item><title><![CDATA[Reply to New firmware release version v1.9.2.b2 on Sat, 14 Oct 2017 09:02:23 GMT]]></title><description><![CDATA[<p dir="auto">Thanks for the quick fix!</p>
]]></description><link>https://forum.pycom.io/post/11826</link><guid isPermaLink="true">https://forum.pycom.io/post/11826</guid><dc:creator><![CDATA[redimo]]></dc:creator><pubDate>Sat, 14 Oct 2017 09:02:23 GMT</pubDate></item><item><title><![CDATA[Reply to New firmware release version v1.9.2.b2 on Sun, 22 Oct 2017 23:01:58 GMT]]></title><description><![CDATA[<p dir="auto">Hello<br />
I try this firmware and the exemple of nano Lora gateway  and TTN<br />
<a href="https://github.com/pycom/pycom-libraries/tree/master/examples/lorawan-nano-gateway" target="_blank" rel="noopener noreferrer nofollow">https://github.com/pycom/pycom-libraries/tree/master/examples/lorawan-nano-gateway</a></p>
<p dir="auto">It's OK for Uplink messages with ABP node.<br />
But with Downlink message (APB node) and join reponse (OTAA), I have this error for every incomming UDP message on the gateway from TTN.<br />
--&gt; Downlink timestamp error!, t_us: 4294606989</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forum.pycom.io/post/12003</link><guid isPermaLink="true">https://forum.pycom.io/post/12003</guid><dc:creator><![CDATA[brunoS]]></dc:creator><pubDate>Sun, 22 Oct 2017 23:01:58 GMT</pubDate></item><item><title><![CDATA[Reply to New firmware release version v1.9.2.b2 on Fri, 03 Nov 2017 17:27:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/6">@daniel</a><br />
I have upgraded device (<code>WIPY2.0</code>) from <code>1.7.2.b1</code> to <code>1.9.2.b2</code> and have problems:</p>
<ol>
<li>ntp_sync most of the time not wrok (hang and never ending)<br />
i use for it old method</li>
</ol>
<pre><code>def getNTPTime(host = &quot;pool.ntp.org&quot;):
	port = 123
	buf = 1024
	address = socket.getaddrinfo(host,  port)[0][-1]
	msg = '\x1b' + 47 * '\0'
	msg = msg.encode()
	TIME1970 = 2208988800 # 1970-01-01 00:00:00

	# connect to server
	client = socket.socket(AF_INET, SOCK_DGRAM)
	client.setblocking(15)
	client.sendto(msg, address)
	msg, address = client.recvfrom(buf)
	t = struct.unpack(&quot;!12I&quot;, msg)[10]
	t -= TIME1970
	tuple_time = time.localtime(t)
	rtc.init((tuple_time))
	client.close()
</code></pre>
<p dir="auto">but also tested if <code>rtc.ntp_sync</code> could help but same result :(</p>
<ol>
<li>i2c not work - i2c buss error<br />
i init it with id=0 (i do not remember if in 1.7.2 it was hardware or software based)</li>
</ol>
<pre><code>bus=I2C(0, I2C.MASTER, baudrate=100000, pins=(&quot;P19&quot;, &quot;P20&quot;))
</code></pre>
<p dir="auto">to test it what is going on i have updated board 3 times (all times sucessfully)<br />
but with the same result</p>
<hr />
<p dir="auto">i have downgraded firmware back to 1.7.2.b1<br />
all work without any problems - any hint?</p>
]]></description><link>https://forum.pycom.io/post/12358</link><guid isPermaLink="true">https://forum.pycom.io/post/12358</guid><dc:creator><![CDATA[livius]]></dc:creator><pubDate>Fri, 03 Nov 2017 17:27:18 GMT</pubDate></item></channel></rss>