<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/.gitignore, branch 3.0.0-beta.1</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=3.0.0-beta.1</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=3.0.0-beta.1'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2018-02-13T06:32:47+00:00</updated>
<entry>
<title>add 52840 serial bootloader</title>
<updated>2018-02-13T06:32:47+00:00</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2018-02-13T06:25:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=3a54a67f3d4e645f311779d5a642f242a5f6b8e7'/>
<id>urn:sha1:3a54a67f3d4e645f311779d5a642f242a5f6b8e7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement busio.I2c.</title>
<updated>2017-11-07T17:59:54+00:00</updated>
<author>
<name>Dan Halbert</name>
<email>halbert@halwitz.org</email>
</author>
<published>2017-11-06T23:35:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7292984204e7ac28a5b69c23930ff7b8be003faf'/>
<id>urn:sha1:7292984204e7ac28a5b69c23930ff7b8be003faf</id>
<content type='text'>
* Added asf4_conf/samd*/hpl_sercom_config.h
* Adjusted clocks in peripheral_clk_config.h.
* Put some frozen libs back in CPX for testing.
* Implement common-hal I2C
* Add samd*_peripherals.h in parallel with samd*_pins.h for common
  functions and data.
* Store SERCOM index in pins table for convenience.
* Canonicalize some #include guard names in various .h files.

simpler reset of SERCOMs; remove unused routine
</content>
</entry>
<entry>
<title>Merge tag 'v1.9.1'</title>
<updated>2017-06-20T17:56:05+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott.shawcroft@gmail.com</email>
</author>
<published>2017-06-20T17:56:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=30ee7019ca651bce1fe966c1089fe977d51dc92b'/>
<id>urn:sha1:30ee7019ca651bce1fe966c1089fe977d51dc92b</id>
<content type='text'>
Fixes for stmhal USB mass storage, lwIP bindings and VFS regressions

This release provides an important fix for the USB mass storage device in
the stmhal port by implementing the SCSI SYNCHRONIZE_CACHE command, which
is now require by some Operating Systems.  There are also fixes for the
lwIP bindings to improve non-blocking sockets and error codes.  The VFS has
some regressions fixed including the ability to statvfs the root.

All changes are listed below.

py core:
- modbuiltins: add core-provided version of input() function
- objstr: catch case of negative "maxsplit" arg to str.rsplit()
- persistentcode: allow to compile with complex numbers disabled
- objstr: allow to compile with obj-repr D, and unicode disabled
- modsys: allow to compile with obj-repr D and PY_ATTRTUPLE disabled
- provide mp_decode_uint_skip() to help reduce stack usage
- makeqstrdefs.py: make script run correctly with Python 2.6
- objstringio: if created from immutable object, follow copy on write policy

extmod:
- modlwip: connect: for non-blocking mode, return EINPROGRESS
- modlwip: fix error codes for duplicate calls to connect()
- modlwip: accept: fix error code for non-blocking mode
- vfs: allow to statvfs the root directory
- vfs: allow "buffering" and "encoding" args to VFS's open()
- modframebuf: fix signed/unsigned comparison pendantic warning

lib:
- libm: use isfinite instead of finitef, for C99 compatibility
- utils/interrupt_char: remove support for KBD_EXCEPTION disabled

tests:
- basics/string_rsplit: add tests for negative "maxsplit" argument
- float: convert "sys.exit()" to "raise SystemExit"
- float/builtin_float_minmax: PEP8 fixes
- basics: convert "sys.exit()" to "raise SystemExit"
- convert remaining "sys.exit()" to "raise SystemExit"

unix port:
- convert to use core-provided version of built-in import()
- Makefile: replace references to make with $(MAKE)

windows port:
- convert to use core-provided version of built-in import()

qemu-arm port:
- Makefile: adjust object-file lists to get correct dependencies
- enable micropython.mem_*() functions to allow more tests

stmhal port:
- boards: enable DAC for NUCLEO_F767ZI board
- add support for NUCLEO_F446RE board
- pass USB handler as parameter to allow more than one USB handler
- usb: use local USB handler variable in Start-of-Frame handler
- usb: make state for USB device private to top-level USB driver
- usbdev: for MSC implement SCSI SYNCHRONIZE_CACHE command
- convert from using stmhal's input() to core provided version

cc3200 port:
- convert from using stmhal's input() to core provided version

teensy port:
- convert from using stmhal's input() to core provided version

esp8266 port:
- Makefile: replace references to make with $(MAKE)
- Makefile: add clean-modules target
- convert from using stmhal's input() to core provided version

zephyr port:
- modusocket: getaddrinfo: Fix mp_obj_len() usage
- define MICROPY_PY_SYS_PLATFORM (to "zephyr")
- machine_pin: use native Zephyr types for Zephyr API calls

docs:
- machine.Pin: remove out_value() method
- machine.Pin: add on() and off() methods
- esp8266: consistently replace Pin.high/low methods with .on/off
- esp8266/quickref: polish Pin.on()/off() examples
- network: move confusingly-named cc3200 Server class to its reference
- uos: deconditionalize, remove minor port-specific details
- uos: move cc3200 port legacy VFS mounting functions to its ref doc
- machine: sort machine classes in logical order, not alphabetically
- network: first step to describe standard network class interface

examples:
- embedding: use core-provided KeyboardInterrupt object
</content>
</entry>
<entry>
<title>docs: Modify Makefile and indexes to generate cPy-differences pages.</title>
<updated>2017-02-20T06:14:35+00:00</updated>
<author>
<name>Rami Ali</name>
<email>flowergrass@users.noreply.github.com</email>
</author>
<published>2017-02-07T05:00:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=3218ccd70d8f387662987f6c1beb79102288b13d'/>
<id>urn:sha1:3218ccd70d8f387662987f6c1beb79102288b13d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Ignore the bin folder that can be used to collect binaries across ports.</title>
<updated>2017-01-06T00:21:16+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott.shawcroft@gmail.com</email>
</author>
<published>2017-01-06T00:21:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=ce94b3f0b4a102e2b993296675318bd143ae2e28'/>
<id>urn:sha1:ce94b3f0b4a102e2b993296675318bd143ae2e28</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Documentation rework to unify the docs together rather than having them</title>
<updated>2016-10-19T00:42:47+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@chickadee.tech</email>
</author>
<published>2016-10-19T00:42:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=46e7f8e4fb172207121516f5bd15d162aedd041d'/>
<id>urn:sha1:46e7f8e4fb172207121516f5bd15d162aedd041d</id>
<content type='text'>
on a per port basis.

Also enables generating docs from inline RST in C code. Simply omits all
lines except those that start with //|. Indentation after "//| " will be
preserved.
</content>
</entry>
<entry>
<title>Include the precompiled math library from ASF.</title>
<updated>2016-09-07T21:35:40+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@chickadee.tech</email>
</author>
<published>2016-09-07T21:35:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=05368d2c581b730911610425d87ccf2b5fda82a5'/>
<id>urn:sha1:05368d2c581b730911610425d87ccf2b5fda82a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>.gitignore: Add *.pyc, because Python 2 doesn't use __pycache__.</title>
<updated>2016-08-29T05:40:00+00:00</updated>
<author>
<name>Krzysztof Blazewicz</name>
<email>blazewicz.krzysztof@gmail.com</email>
</author>
<published>2016-08-27T08:15:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d1a366fdd4a0f60e0487bd45a8b456804c75ea5d'/>
<id>urn:sha1:d1a366fdd4a0f60e0487bd45a8b456804c75ea5d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>msvc: Allow overriding of build options with custom file</title>
<updated>2015-04-30T08:14:59+00:00</updated>
<author>
<name>stijn</name>
<email>stinos@zoho.com</email>
</author>
<published>2015-04-30T08:14:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=a62c10697437df8af19f57d8a9aa9af21624a399'/>
<id>urn:sha1:a62c10697437df8af19f57d8a9aa9af21624a399</id>
<content type='text'>
- by default look for a user.props in the msvc directory, which is more convenient
  than the built-in way of looking for such file in the user's home directory
- make git ignore the file
</content>
</entry>
<entry>
<title>Add GNUmakefile to the .gitignore file.</title>
<updated>2014-07-24T07:09:56+00:00</updated>
<author>
<name>Dave Hylands</name>
<email>dhylands@gmail.com</email>
</author>
<published>2014-07-24T07:09:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=1bbdd4ed2ac060106998fe2ba19551a0f51493cb'/>
<id>urn:sha1:1bbdd4ed2ac060106998fe2ba19551a0f51493cb</id>
<content type='text'>
</content>
</entry>
</feed>
