<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/extmod, branch v1.9.1</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.9.1</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.9.1'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2017-06-10T17:34:38+00:00</updated>
<entry>
<title>extmod/modframebuf: Fix signed/unsigned comparison pendantic warning.</title>
<updated>2017-06-10T17:34:38+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-06-10T17:31:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=0a7735f1a67e7c2d6f59205f8d57fca2449cec93'/>
<id>urn:sha1:0a7735f1a67e7c2d6f59205f8d57fca2449cec93</id>
<content type='text'>
Happened with 32-bit gcc 4.8.4.
</content>
</entry>
<entry>
<title>extmod/vfs: Allow "buffering" and "encoding" args to VFS's open().</title>
<updated>2017-06-07T05:29:53+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-06-07T05:29:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7ecfbb8267c050ba5bd5bdf7becfb055f53a4f80'/>
<id>urn:sha1:7ecfbb8267c050ba5bd5bdf7becfb055f53a4f80</id>
<content type='text'>
These args are currently ignored but are parsed to make it easier to
write portable scripts between CPython and MicroPython.
</content>
</entry>
<entry>
<title>extmod/vfs: Allow to statvfs the root directory.</title>
<updated>2017-06-07T05:17:45+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-06-07T05:17:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=f6ef8e3f17222a397e02f93a8b0d283e0f6c9793'/>
<id>urn:sha1:f6ef8e3f17222a397e02f93a8b0d283e0f6c9793</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extmod/modlwip: accept: Fix error code for non-blocking mode.</title>
<updated>2017-06-04T10:45:37+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-06-04T10:45:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=50de6d2fab9ad67c6df0d74ce4b8c3704d1de090'/>
<id>urn:sha1:50de6d2fab9ad67c6df0d74ce4b8c3704d1de090</id>
<content type='text'>
In non-blocking mode, if no pending connection available, should return
EAGAIN, not ETIMEDOUT.
</content>
</entry>
<entry>
<title>extmod/modlwip: Fix error codes for duplicate calls to connect().</title>
<updated>2017-06-04T09:30:41+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-06-04T09:30:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=5da8de2b66d3f43107e1e745afa9bb6a4bf601eb'/>
<id>urn:sha1:5da8de2b66d3f43107e1e745afa9bb6a4bf601eb</id>
<content type='text'>
If socket is already connected, POSIX requires returning EISCONN. If
connection was requested, but not yet complete (for non-blocking
socket), error code is EALREADY.

http://pubs.opengroup.org/onlinepubs/7908799/xns/connect.html
</content>
</entry>
<entry>
<title>extmod/modlwip: connect: For non-blocking mode, return EINPROGRESS.</title>
<updated>2017-06-03T19:48:31+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-06-03T19:32:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=a0dbbbebb8c0286e00ae06751b0173cbca4ec801'/>
<id>urn:sha1:a0dbbbebb8c0286e00ae06751b0173cbca4ec801</id>
<content type='text'>
Instead of ETIMEDOUT. This is consistent with POSIX:
http://pubs.opengroup.org/onlinepubs/7908799/xns/connect.html
</content>
</entry>
<entry>
<title>various: Spelling fixes</title>
<updated>2017-05-29T08:36:05+00:00</updated>
<author>
<name>Ville Skyttä</name>
<email>ville.skytta@iki.fi</email>
</author>
<published>2017-05-29T07:08:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=ca16c3821053e5bf2b87aeb10007f73f31dc1eac'/>
<id>urn:sha1:ca16c3821053e5bf2b87aeb10007f73f31dc1eac</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extmod/vfs_fat_misc: Remove dot-dirs filter since FatFS already does it.</title>
<updated>2017-05-13T08:58:46+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-05-13T08:58:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=f95e4e77823919dfe82b6711f1d25d2d8c5008fc'/>
<id>urn:sha1:f95e4e77823919dfe82b6711f1d25d2d8c5008fc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extmod/vfs: Use MP_S_IFDIR, MP_S_IFREG consts instead of magic numbers.</title>
<updated>2017-05-10T02:30:34+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-05-10T02:30:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d70f688f25a76e1e6a251a4ffc5144539c1a4e64'/>
<id>urn:sha1:d70f688f25a76e1e6a251a4ffc5144539c1a4e64</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extmod/vfs_fat: Replace listdir() with implementation of ilistdir().</title>
<updated>2017-05-10T01:39:28+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-05-05T13:32:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d4cd4831b01ff87b4a9f84bb88b165e3b156b3b4'/>
<id>urn:sha1:d4cd4831b01ff87b4a9f84bb88b165e3b156b3b4</id>
<content type='text'>
VfsFat no longer has the listdir() method.  Rather, if listdir()
functionality is needed then one should use uos.listdir() which will call
VfsFat.ilistdir().
</content>
</entry>
</feed>
