<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/cc3200, branch v1.4.1</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.4.1</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.4.1'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2015-03-31T12:34:09+00:00</updated>
<entry>
<title>cc3200: Add specific version file for the CC3200 port.</title>
<updated>2015-03-31T12:34:09+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-31T12:31:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d460a307114285c675846bc4be2a57b59c06c11a'/>
<id>urn:sha1:d460a307114285c675846bc4be2a57b59c06c11a</id>
<content type='text'>
Current version has been numbered as 0.9.0 since Timers/PWM support
is still missing.
</content>
</entry>
<entry>
<title>cc3200: Remove duplicated code from moduos.</title>
<updated>2015-03-31T12:34:07+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-28T20:46:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=3f42f32648b7dfb5ac9aa9fb12a546999219b3da'/>
<id>urn:sha1:3f42f32648b7dfb5ac9aa9fb12a546999219b3da</id>
<content type='text'>
Error reporting is also changed from detailed to terse, as with the
rest of the CC3200's modules. All this combined saves ~200 bytes.
</content>
</entry>
<entry>
<title>lib: Update FatFs to R0.11.</title>
<updated>2015-03-29T21:12:14+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-27T11:17:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7b19e99edd2ca5d60154ffaa6007c936f274a15a'/>
<id>urn:sha1:7b19e99edd2ca5d60154ffaa6007c936f274a15a</id>
<content type='text'>
There are lots of cosmetic changes, but this release brings a  very
important bug fix:
 - Fixed f_unlink() does not remove cluster chain of the file.

With R0.10c if you try to write a file that is too large to fit in the
free space of the drive, the operation fails, you delete the incomplete
file, and it seems to be erased, but the space is not really freed,
because any subsequent write operations fail because the drive is
"still" full. The only way to recover from this is by formatting the
drive. I can confirm that R0.11 fixes the problem.
</content>
</entry>
<entry>
<title>cc3200: Remove unneeded SPI instruction in the simplelink driver.</title>
<updated>2015-03-26T19:50:39+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-26T19:47:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=1eba62cac9473b69712effb3fa30bb3f9f9b6b1b'/>
<id>urn:sha1:1eba62cac9473b69712effb3fa30bb3f9f9b6b1b</id>
<content type='text'>
Setting the word count before a SPI transaction is only needed when
using DMA.
</content>
</entry>
<entry>
<title>cc3200: Increase main stack size to 2K.</title>
<updated>2015-03-26T19:50:38+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-26T19:41:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=1826036a8363de825668185c3d5b4efd2820d353'/>
<id>urn:sha1:1826036a8363de825668185c3d5b4efd2820d353</id>
<content type='text'>
Increasing it from 1K to 2K gives more freedom to the callback
handlers, before this, simply nesting a function call into a
printf would cause a stack overflow.
</content>
</entry>
<entry>
<title>cc3200: Minor refactorings on modwlan and pybsleep.</title>
<updated>2015-03-26T13:27:21+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-26T13:27:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=760a6eca9bfb9ca3b3b6c98b79040ac3262bd03f'/>
<id>urn:sha1:760a6eca9bfb9ca3b3b6c98b79040ac3262bd03f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cc3200: Reenable active interrupts when waking from suspended mode.</title>
<updated>2015-03-26T12:58:58+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-26T12:51:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4be44014abd5804e3cd8f810b67ad5555af47f13'/>
<id>urn:sha1:4be44014abd5804e3cd8f810b67ad5555af47f13</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cc3200: Add callback support to the UART for RX interrupts.</title>
<updated>2015-03-26T09:28:43+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-26T09:25:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=2d717ad97a48c9451a2a51096904f471a0af0a60'/>
<id>urn:sha1:2d717ad97a48c9451a2a51096904f471a0af0a60</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cc3200: Remove superflous parameters from the SPI API.</title>
<updated>2015-03-26T09:28:41+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-25T18:14:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=e909e3887140cb96ce340f2afb8f4afd79bb68e9'/>
<id>urn:sha1:e909e3887140cb96ce340f2afb8f4afd79bb68e9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cc3200: Remove superflous params from the I2C API.</title>
<updated>2015-03-25T15:56:14+00:00</updated>
<author>
<name>Daniel Campora</name>
<email>daniel@wipy.io</email>
</author>
<published>2015-03-25T15:56:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7f41f650de449c74e07ad35e0c944699eba7949c'/>
<id>urn:sha1:7f41f650de449c74e07ad35e0c944699eba7949c</id>
<content type='text'>
</content>
</entry>
</feed>
