<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/ports/minimal, branch encoding</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=encoding</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=encoding'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2019-10-13T15:07:40+00:00</updated>
<entry>
<title>remove ports/minimal</title>
<updated>2019-10-13T15:07:40+00:00</updated>
<author>
<name>Dan Halbert</name>
<email>halbert@halwitz.org</email>
</author>
<published>2019-10-13T15:07:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=c575cd7bc724a05c141a07ebcc6d181011d04f45'/>
<id>urn:sha1:c575cd7bc724a05c141a07ebcc6d181011d04f45</id>
<content type='text'>
</content>
</entry>
<entry>
<title>minimal/main: Allow to compile without GC enabled.</title>
<updated>2018-05-21T03:13:21+00:00</updated>
<author>
<name>Daniel Shaulov</name>
<email>daniel.shaulov@gmail.com</email>
</author>
<published>2018-05-20T18:05:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=cac2eddc1634e65a1097646d11016298e6375f87'/>
<id>urn:sha1:cac2eddc1634e65a1097646d11016298e6375f87</id>
<content type='text'>
</content>
</entry>
<entry>
<title>minimal/Makefile: Explicitly include lib/utils/printf.c in build.</title>
<updated>2018-02-22T02:19:09+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2018-02-22T02:19:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=a36c700d9b3bacd3bfba0eef5bf9c9ba19a0e440'/>
<id>urn:sha1:a36c700d9b3bacd3bfba0eef5bf9c9ba19a0e440</id>
<content type='text'>
The bare-metal port needs it and it's no longer included by default since
the Makefile now uses $(PY_CORE_O).
</content>
</entry>
<entry>
<title>ports/{bare-arm,minimal}/Makefile: Only build with core source files.</title>
<updated>2018-02-22T01:48:51+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2018-02-22T00:15:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=9df6451ec588e0e9bbd2e0f0eb2f177c01abd0f9'/>
<id>urn:sha1:9df6451ec588e0e9bbd2e0f0eb2f177c01abd0f9</id>
<content type='text'>
These ports don't need anything from extmod so don't include those files
at all in the build.  This speeds up the build by about 10% when building
with a single core.
</content>
</entry>
<entry>
<title>minimal/README: Update text to better describe what "make run" does.</title>
<updated>2018-01-31T10:05:21+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2018-01-31T10:05:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=524ff3027525832c85bf5411a6302578836b941a'/>
<id>urn:sha1:524ff3027525832c85bf5411a6302578836b941a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py/persistentcode: Bump .mpy version number to version 3.</title>
<updated>2017-10-04T23:49:44+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-10-04T23:48:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=ff93fd4f50321c6190e1659b19e64fef3045a484'/>
<id>urn:sha1:ff93fd4f50321c6190e1659b19e64fef3045a484</id>
<content type='text'>
The binary and unary ops have changed bytecode encoding.
</content>
</entry>
<entry>
<title>all: Remove inclusion of internal py header files.</title>
<updated>2017-10-04T01:37:50+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-10-04T01:37:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=a3dc1b1957d2c96d7c60c2c629c95077b03488a1'/>
<id>urn:sha1:a3dc1b1957d2c96d7c60c2c629c95077b03488a1</id>
<content type='text'>
Header files that are considered internal to the py core and should not
normally be included directly are:
    py/nlr.h - internal nlr configuration and declarations
    py/bc0.h - contains bytecode macro definitions
    py/runtime0.h - contains basic runtime enums

Instead, the top-level header files to include are one of:
    py/obj.h - includes runtime0.h and defines everything to use the
        mp_obj_t type
    py/runtime.h - includes mpstate.h and hence nlr.h, obj.h, runtime0.h,
        and defines everything to use the general runtime support functions

Additional, specific headers (eg py/objlist.h) can be included if needed.
</content>
</entry>
<entry>
<title>all: Update Makefiles and others to build with new ports/ dir layout.</title>
<updated>2017-09-06T04:09:13+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-09-06T04:09:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4a93801c12898898744131f57d79cf216d0861b3'/>
<id>urn:sha1:4a93801c12898898744131f57d79cf216d0861b3</id>
<content type='text'>
Also renames "stmhal" to "stm32" in documentation and everywhere else.
</content>
</entry>
<entry>
<title>ports: Make new ports/ sub-directory and move all ports there.</title>
<updated>2017-09-06T03:40:51+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-09-06T03:40:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=01dd7804b87d60b2deab16712eccb3b97351a9b7'/>
<id>urn:sha1:01dd7804b87d60b2deab16712eccb3b97351a9b7</id>
<content type='text'>
This is to keep the top-level directory clean, to make it clear what is
core and what is a port, and to allow the repository to grow with new ports
in a sustainable way.
</content>
</entry>
</feed>
