| Commit message (Collapse) | Author | Age |
|
|
|
|
| |
There were several different spellings of MicroPython present in comments,
when there should be only one.
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
This allows it to be used only when the hardware supports VFP
instructions, preventing compile errors.
|
|
|
|
| |
Requires addition of software implementation of sqrtf function.
|
| |
|
|
|
|
| |
Addresses issue #1081.
|
|
|
|
| |
To make mp_obj_new_int_from_float() somehow work.
|
|
|
|
|
|
|
|
|
| |
acoshf, asinhf, atanhf were added from musl. mathsincos.c was
split up into its original, separate files (from newlibe-nano-2).
tan was added.
All of the important missing float functions are now implemented,
and pyboard now passes tests/float/math_fun.py (finally!).
|
|
|
|
| |
Tested and working on unix and pyboard.
|
|
|
|
|
|
| |
Also use less stack space when printing single precision float.
Addition of asinf and acosf addresses issue #851.
|
| |
|
|
Top-level lib directory is for standard C libraries that we want to
provide our own versions of (for efficiency and stand-alone reasons).
It currently has libm in it for math functions.
Also add atanf and atan2f, which addresses issue #837.
|