<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/lib, branch v1.7</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.7</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.7'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2016-04-08T12:19:57+00:00</updated>
<entry>
<title>lib/axtls: Update to the latest upstream master.</title>
<updated>2016-04-08T12:19:57+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2016-04-08T12:19:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=5e919b7ef8612046e85c17d91f12067a1e0c893f'/>
<id>urn:sha1:5e919b7ef8612046e85c17d91f12067a1e0c893f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>esp8266: Disallow recursive calls to REPL.</title>
<updated>2016-04-01T09:53:50+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2016-04-01T09:53:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=777232c9a5ce15ca7c7b0b3c52dd2a3b00bb1acc'/>
<id>urn:sha1:777232c9a5ce15ca7c7b0b3c52dd2a3b00bb1acc</id>
<content type='text'>
Before this change, if REPL blocked executing some code, it was possible
to still input new statememts and excuting them, all leading to weird,
and portentially dangerous interaction.

TODO: Current implementation may have issues processing input accumulated
while REPL was blocked.
</content>
</entry>
<entry>
<title>esp8266: Fix issue when current repl line was garbage-collected.</title>
<updated>2016-03-30T15:13:03+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2016-03-30T15:13:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=2e75a17bab9a3f3379546659e557f026ef70cabe'/>
<id>urn:sha1:2e75a17bab9a3f3379546659e557f026ef70cabe</id>
<content type='text'>
Reference it from root pointers section.
</content>
</entry>
<entry>
<title>lib/fatfs: Add support for sector sizes larger than 512 bytes.</title>
<updated>2016-02-10T08:59:58+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-02-09T14:31:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=13a4c120ce2cdeb5aa1c210d9426d31e02898486'/>
<id>urn:sha1:13a4c120ce2cdeb5aa1c210d9426d31e02898486</id>
<content type='text'>
If MICROPY_FATFS_MAX_SS is defined to power of 2 value between 1024 and
4096, support for dynamic sector size in FatFs will be enabled.  Note
that FatFs reserves static buffer of MICROPY_FATFS_MAX_SS size for each
filesystem in use, so that value should be set sparingly.

Initial patch provided by @pfalcon.
</content>
</entry>
<entry>
<title>lib/libc/string0: Use uintptr_t instead of uint32_t.</title>
<updated>2015-12-31T14:11:18+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-12-31T14:11:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=64ececb72fe8ccf769f4751cbd591fde650bc83a'/>
<id>urn:sha1:64ececb72fe8ccf769f4751cbd591fde650bc83a</id>
<content type='text'>
This makes the code portable to non-32-bit architectures.
</content>
</entry>
<entry>
<title>lib/utils: Add pyexec_frozen_module to load and execute frozen module.</title>
<updated>2015-12-26T12:32:33+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-12-26T12:32:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=84b245f187f9711357b1fd46bebc67266bd028e5'/>
<id>urn:sha1:84b245f187f9711357b1fd46bebc67266bd028e5</id>
<content type='text'>
This is a convenience function similar to pyexec_file.  It should be used
instead of raw mp_parse_compile_execute because the latter does not catch
and report exceptions.
</content>
</entry>
<entry>
<title>lib/libm: Allow math funcs to be used by non-Thumb archs.</title>
<updated>2015-12-18T21:05:44+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-12-18T21:05:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=a67651406d4154cd5093884dea6ca0ca395d56db'/>
<id>urn:sha1:a67651406d4154cd5093884dea6ca0ca395d56db</id>
<content type='text'>
Requires addition of software implementation of sqrtf function.
</content>
</entry>
<entry>
<title>lib/utils/printf: Add vsnprintf alias for Clang.</title>
<updated>2015-12-12T18:19:42+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2015-12-12T18:19:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=f2ed736b29a8e9e772a5fd4b97162b2efdaf9716'/>
<id>urn:sha1:f2ed736b29a8e9e772a5fd4b97162b2efdaf9716</id>
<content type='text'>
Was reported to break MacOSX build.
</content>
</entry>
<entry>
<title>lib/utils/printf: Apply workaround for static linking with uclibc.</title>
<updated>2015-12-10T12:42:01+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2015-12-10T12:42:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=1f0aaece3ab7ab578de7e227ce46c45129b6b51e'/>
<id>urn:sha1:1f0aaece3ab7ab578de7e227ce46c45129b6b51e</id>
<content type='text'>
uclibc objects call __GI_vsnprintf().
</content>
</entry>
<entry>
<title>py: Change mp_print_strn_t func type to use size_t for the str length.</title>
<updated>2015-11-29T14:25:04+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-11-27T12:19:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4e7107a572b55321f3f483f0293dd19b4f752c9b'/>
<id>urn:sha1:4e7107a572b55321f3f483f0293dd19b4f752c9b</id>
<content type='text'>
</content>
</entry>
</feed>
