<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/lib/libm, branch 2.2.0rc1</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=2.2.0rc1</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=2.2.0rc1'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2017-11-07T01:09:23+00:00</updated>
<entry>
<title>Fix round(). Don't split a statement with a #pragma. It breaks the compiled output.</title>
<updated>2017-11-07T01:09:23+00:00</updated>
<author>
<name>Dan Halbert</name>
<email>halbert@halwitz.org</email>
</author>
<published>2017-11-07T00:55:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=ddc85701372f8537aff85d7cf23ef0a18f25038f'/>
<id>urn:sha1:ddc85701372f8537aff85d7cf23ef0a18f25038f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>1. Use lib/libm for small (non-Express builds) to gain back a lot of flash space.</title>
<updated>2017-10-16T19:20:33+00:00</updated>
<author>
<name>Dan Halbert</name>
<email>halbert@halwitz.org</email>
</author>
<published>2017-10-15T18:02:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=dbd3f1516854f8609fe886d83b556b73684fdc6a'/>
<id>urn:sha1:dbd3f1516854f8609fe886d83b556b73684fdc6a</id>
<content type='text'>
2. Add flag INTERNAL_LIBM to mpconfigboard.mk files to signal using lib/libm.
3. Fix floating-point warnings in lib/libm
4. Turn off -finline-limit, no longer needed due to 1.
5. Add explicit flags for SPI_FLASH_FILESYSTEM and INTERNAL_FLASH_FILESYSTEM
to mpconfigboard.mk files, so they don't need to know the name of the .c file
that implements those. Makefile takes care of checking the flags and including
the right files.
</content>
</entry>
<entry>
<title>all: Use the name MicroPython consistently in comments</title>
<updated>2017-07-31T08:35:40+00:00</updated>
<author>
<name>Alexander Steffen</name>
<email>devel.20.webmeister@spamgourmet.com</email>
</author>
<published>2017-06-30T07:22:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=55f33240f3d7051d4213629e92437a36f1fac50e'/>
<id>urn:sha1:55f33240f3d7051d4213629e92437a36f1fac50e</id>
<content type='text'>
There were several different spellings of MicroPython present in comments,
when there should be only one.
</content>
</entry>
<entry>
<title>lib/libm/math: Remove implementations of float conversion functions.</title>
<updated>2017-06-14T07:18:23+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-06-14T07:18:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=3bedff0b3cbb5ae9bc499f8ec0108c54f26fc87c'/>
<id>urn:sha1:3bedff0b3cbb5ae9bc499f8ec0108c54f26fc87c</id>
<content type='text'>
These implementations are incorrect (eg f2d and d2f don't handle special
values like 0.0) and proper versions can be provided by libgcc (or
equivalent depending on the toolchain).

libgcc is now linked with the stmhal port so that library will provide
these functions from now on.
</content>
</entry>
<entry>
<title>lib/libm: Use isfinite instead of finitef, for C99 compatibility.</title>
<updated>2017-05-31T01:34:29+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-05-31T01:34:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=b53a63517a71278d0f73f98f4f5ce1b15b14370e'/>
<id>urn:sha1:b53a63517a71278d0f73f98f4f5ce1b15b14370e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>lib/libm: Add implementation of nearbyintf, from musl-1.1.16.</title>
<updated>2017-03-23T23:38:11+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-03-23T23:38:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=fb161aa45a8110d18b08efa3175027b8fbac5463'/>
<id>urn:sha1:fb161aa45a8110d18b08efa3175027b8fbac5463</id>
<content type='text'>
</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>lib/libm: Remove unused definition of "one".</title>
<updated>2016-06-25T21:30:40+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-06-25T21:30:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7ddd85f933f18deff49bc6af520d4dc8d7be6282'/>
<id>urn:sha1:7ddd85f933f18deff49bc6af520d4dc8d7be6282</id>
<content type='text'>
</content>
</entry>
<entry>
<title>lib/libm: Format code to pass gcc v6.1.1 warning.</title>
<updated>2016-06-25T21:28:43+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-06-25T21:28:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=873853f1a8fcc124959685daf2d210da035794c5'/>
<id>urn:sha1:873853f1a8fcc124959685daf2d210da035794c5</id>
<content type='text'>
gcc 6.1.1 warns when indentation is misleading, and in this case the
formatting of the code really is misleading.  So adjust the formatting
to be clear of the meaning of the code.
</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>
</feed>
