<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/tests/pyb, branch v1.5.1</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.5.1</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.5.1'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2015-11-02T23:09:49+00:00</updated>
<entry>
<title>stmhal/can: Fix a bug in filter handling.</title>
<updated>2015-11-02T23:09:49+00:00</updated>
<author>
<name>Henrik Sölver</name>
<email>henrik.solver@gmail.com</email>
</author>
<published>2015-11-01T22:30:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=35e7d9c0f114ea078d0a19c7f9743fdc4c7e8a3b'/>
<id>urn:sha1:35e7d9c0f114ea078d0a19c7f9743fdc4c7e8a3b</id>
<content type='text'>
Reported here: http://forum.micropython.org/viewtopic.php?f=2&amp;t=845
</content>
</entry>
<entry>
<title>tests: In pyb RTC tests, check wakeup register values.</title>
<updated>2015-10-09T22:06:05+00:00</updated>
<author>
<name>Peter Hinch</name>
<email>peter@hinch.me.uk</email>
</author>
<published>2015-10-09T06:57:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=0e87bc7be69c60581324e23163f14a269d33fcc7'/>
<id>urn:sha1:0e87bc7be69c60581324e23163f14a269d33fcc7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests: Add test for pyboard SPI in slave mode, recv with no master.</title>
<updated>2015-08-05T22:47:57+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-08-05T22:44:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=526dd542528c681c81558ba8395759e891cdecf2'/>
<id>urn:sha1:526dd542528c681c81558ba8395759e891cdecf2</id>
<content type='text'>
See PR #1414.
</content>
</entry>
<entry>
<title>tests: Add tests to create valid and invalid UART, I2C, SPI, CAN busses.</title>
<updated>2015-05-28T10:06:12+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-05-28T10:06:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=6d1ff7e9665c253b26fec0f7696107ff8446185c'/>
<id>urn:sha1:6d1ff7e9665c253b26fec0f7696107ff8446185c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>lib: Fix some issues in timeutils</title>
<updated>2015-05-21T20:31:50+00:00</updated>
<author>
<name>Dave Hylands</name>
<email>dhylands@gmail.com</email>
</author>
<published>2015-05-18T15:26:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=a3a14b9db79d3af24e724832092d1861ec231365'/>
<id>urn:sha1:a3a14b9db79d3af24e724832092d1861ec231365</id>
<content type='text'>
In particular, dates prior to Mar 1, 2000 are screwed up.

The easiest way to see this is to do:

&gt;&gt;&gt; import time
&gt;&gt;&gt; time.localtime(0)
(2000, 1, 1, 0, 0, 0, 5, 1)
&gt;&gt;&gt; time.localtime(1)
(2000, 1, 2, 233, 197, 197, 6, 2)

With this patch, we instead get:
&gt;&gt;&gt; import time
&gt;&gt;&gt; time.localtime(1)
(2000, 1, 1, 0, 0, 1, 5, 1)

Doh - In C % is NOT a modulo operator, it's a remainder operator.
</content>
</entry>
<entry>
<title>sthmal/rtc.c: Add calibration() method to get/set RTC fine-tuning value.</title>
<updated>2015-05-11T22:48:39+00:00</updated>
<author>
<name>blmorris</name>
<email>bryan.morrissey@gmail.com</email>
</author>
<published>2015-05-07T17:18:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=5df81de7afbf4e9f24413ba957f4a7cce89fa1e0'/>
<id>urn:sha1:5df81de7afbf4e9f24413ba957f4a7cce89fa1e0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stmhal: Add support for sending and receiving CAN RTR messages.</title>
<updated>2015-04-18T13:53:00+00:00</updated>
<author>
<name>Henrik</name>
<email>henrik.solver@gmail.com</email>
</author>
<published>2015-04-17T19:15:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=e3cd1543170a9b00b75fb0d1d097f0d68dc8d45b'/>
<id>urn:sha1:e3cd1543170a9b00b75fb0d1d097f0d68dc8d45b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stmhal: Allow sending CAN messages with timeout=0.</title>
<updated>2015-04-16T22:52:43+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-04-16T22:52:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7d5e34287c678b015a0f94620fc8626897a5cbda'/>
<id>urn:sha1:7d5e34287c678b015a0f94620fc8626897a5cbda</id>
<content type='text'>
Thanks to Henrik Sölver for this patch.
</content>
</entry>
<entry>
<title>stmhal: Make LED object print LED(x) for consistency with constructor.</title>
<updated>2015-04-11T20:50:53+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-04-11T20:50:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7a6dbaa89b9768d5e4a51ea63d55e18e72614dd7'/>
<id>urn:sha1:7a6dbaa89b9768d5e4a51ea63d55e18e72614dd7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests: Make pyb/timer test check callback timing properly.</title>
<updated>2015-03-20T23:50:33+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-03-20T23:50:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=db80b65402237345aecb1bc4c9575ae975624e2c'/>
<id>urn:sha1:db80b65402237345aecb1bc4c9575ae975624e2c</id>
<content type='text'>
</content>
</entry>
</feed>
