<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/tests/pyb, branch v1.4.6</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.4.6</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.4.6'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2015-08-05T22:47:57+00:00</updated>
<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>
<entry>
<title>stmhal: Fix adc.read_timed so buffer store respects element size.</title>
<updated>2015-03-13T22:11:50+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-03-13T22:11:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=ac4f6b804fc7fd298aef420195f773f830ace422'/>
<id>urn:sha1:ac4f6b804fc7fd298aef420195f773f830ace422</id>
<content type='text'>
Addresses issue #1154.
</content>
</entry>
<entry>
<title>tests: Update pyb/uart.py test since baudrate of 1200 is too low.</title>
<updated>2015-02-27T00:40:08+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-02-27T00:40:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=b67253e96f2bf9225c5652feb3bf41e30c76230e'/>
<id>urn:sha1:b67253e96f2bf9225c5652feb3bf41e30c76230e</id>
<content type='text'>
</content>
</entry>
</feed>
