<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/stmhal, branch v1.8.6</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.8.6</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.8.6'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2016-11-08T03:28:30+00:00</updated>
<entry>
<title>py: Move frozen bytecode Makefile rules from ports to common mk files.</title>
<updated>2016-11-08T03:28:30+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-11-08T03:28:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=bdf33bc1367fa6fc888c791ce00b326bbd279bdf'/>
<id>urn:sha1:bdf33bc1367fa6fc888c791ce00b326bbd279bdf</id>
<content type='text'>
Now, to use frozen bytecode all a port needs to do is define
FROZEN_MPY_DIR to the directory containing the .py files to freeze, and
define MICROPY_MODULE_FROZEN_MPY and MICROPY_QSTR_EXTRA_POOL.
</content>
</entry>
<entry>
<title>stmhal: enable SD power save (disable CLK on idle)</title>
<updated>2016-11-07T05:49:29+00:00</updated>
<author>
<name>Ryan Shaw</name>
<email>ryannathans@hotmail.com</email>
</author>
<published>2016-10-10T03:23:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=8ebd53afc987e0ad21075d9c917020256f6d5b23'/>
<id>urn:sha1:8ebd53afc987e0ad21075d9c917020256f6d5b23</id>
<content type='text'>
</content>
</entry>
<entry>
<title>drivers: Add "from micropython import const" when const is used.</title>
<updated>2016-11-03T01:41:11+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-11-03T01:41:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7bb0f7b0f6218e813ca1ea9a21d5d549c7b36ab9'/>
<id>urn:sha1:7bb0f7b0f6218e813ca1ea9a21d5d549c7b36ab9</id>
<content type='text'>
Following best-practice use of the const feature, to make it compatible
with Python.
</content>
</entry>
<entry>
<title>lib/libm: Move Thumb-specific sqrtf function to separate file.</title>
<updated>2016-11-03T01:26:32+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-11-03T01:26:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=cd527bb324ade952d11a134859d38bf5272c165e'/>
<id>urn:sha1:cd527bb324ade952d11a134859d38bf5272c165e</id>
<content type='text'>
This allows it to be used only when the hardware supports VFP
instructions, preventing compile errors.
</content>
</entry>
<entry>
<title>stmhal/modutime: Consistently convert to MP_ROM_QSTR/MP_ROM_PTR.</title>
<updated>2016-10-29T14:46:47+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2016-10-29T14:46:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=369233105b19226eea0c145b67dcc77e09813a07'/>
<id>urn:sha1:369233105b19226eea0c145b67dcc77e09813a07</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extmod/utime_mphal: Implement ticks_add(), add to all maintained ports.</title>
<updated>2016-10-29T14:30:05+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2016-10-29T14:30:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d86cac4b8268bbe9203cdd7ab8d8c2a65d142986'/>
<id>urn:sha1:d86cac4b8268bbe9203cdd7ab8d8c2a65d142986</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros.</title>
<updated>2016-10-21T05:26:01+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-10-18T00:06:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4ebdb1f2b217410cdc1cee0e0c0da8fceb7627f2'/>
<id>urn:sha1:4ebdb1f2b217410cdc1cee0e0c0da8fceb7627f2</id>
<content type='text'>
In order to have more fine-grained control over how builtin functions are
constructed, the MP_DECLARE_CONST_FUN_OBJ macros are made more specific,
with suffix of _0, _1, _2, _3, _VAR, _VAR_BETEEN or _KW.  These names now
match the MP_DEFINE_CONST_FUN_OBJ macros.
</content>
</entry>
<entry>
<title>stmhal/Makefile: Use standard rules for frozen module generation.</title>
<updated>2016-10-20T22:27:17+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2016-10-20T22:27:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=3967ca7390ff8257728ef6237b93977b63bde41d'/>
<id>urn:sha1:3967ca7390ff8257728ef6237b93977b63bde41d</id>
<content type='text'>
As defined in py/py.mk.
</content>
</entry>
<entry>
<title>stmhal/led: Refactor LED to use mp_hal_pin_output() init function.</title>
<updated>2016-10-18T03:43:05+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-10-18T03:43:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=b4cc68e4a4d656c4b1ae4de8db6a089726f1f572'/>
<id>urn:sha1:b4cc68e4a4d656c4b1ae4de8db6a089726f1f572</id>
<content type='text'>
As part of this patch the MICROPY_HW_LED_OTYPE setting is removed because
it is now unused (all boards anyway had this as OUTPUT_PP).
</content>
</entry>
<entry>
<title>stmhal: Refactor pin usage to use mp_hal_pin API.</title>
<updated>2016-10-18T03:34:08+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-10-18T03:32:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d49d81b1675b39c0c29c95b105edbbb7384f9314'/>
<id>urn:sha1:d49d81b1675b39c0c29c95b105edbbb7384f9314</id>
<content type='text'>
</content>
</entry>
</feed>
