1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-12 19:10:32 +03:00

Piecewise linear interpolation routine (#13798)

* piecewise linear interpolation routines

* haslinghuis review

* triling spaces removed

* KarateBrot review

* ledvinap's review

* minor style fixes
This commit is contained in:
Ivan Efimov 2024-08-07 11:21:02 -05:00 committed by GitHub
parent 9520b5b40f
commit 8f10f17245
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 227 additions and 0 deletions

View file

@ -61,6 +61,7 @@ COMMON_SRC = \
common/maths.c \
common/printf.c \
common/printf_serial.c \
common/pwl.c \
common/sdft.c \
common/sensor_alignment.c \
common/stopwatch.c \
@ -401,6 +402,7 @@ SPEED_OPTIMISED_SRC := $(SPEED_OPTIMISED_SRC) \
common/encoding.c \
common/filter.c \
common/maths.c \
common/pwl.c \
common/sdft.c \
common/stopwatch.c \
common/typeconversion.c \