aboutsummaryrefslogtreecommitdiff
path: root/stmhal/math.c
AgeCommit message (Collapse)Author
2014-04-18stmhal: Update ADC, DAC and I2C objects to use new buffer protocol.Damien George
Main reason for expanding buffer protocol API was to support writes to a buffer in ADC module (see read_timed). With this change you can now create an array of arbitrary type and ADC.read_timed will store into that array in the correct format (byte, int, float). I wonder though if all these changes were really worth it to support just this function. Hopefully this enhanced buffer protocol API (with typecode specified) will be used elsewhere.
2014-04-17stmhal: Add more math functions.Damien George
Taken straight from musl and newlib. License seems compatible with MIT.
2014-04-03stmhal: Add powf, logf, log2f, log10f.Damien George
2014-04-03stmhal: #undef log2f if it's defined.Damien George
2014-04-02stmhal: Fix servo object; add fpclassify to math functions.Damien George
2014-03-23stm/stmhal: Change gammaf to tgammaf.Damien George
2014-03-23stmhal: Copy changes to math.c from stm port.Damien George
2014-03-22stm/stmhal: Add more math stubs.Damien George
2014-03-21Disable some math functions until they work correctly.Damien George
2014-03-12REPl working on UART6 with STMHALDave Hylands