drone-micropython-raw 0.1.1

Bindings to MicroPython.
1
2
3
4
5
6
7
#include <math.h>

static const double _M_LN10 = 2.302585092994046;

double log10(double x) {
    return log(x) / (double)_M_LN10;
}