.

Dependencies:   L432KC_SPI_Pey_Lal

Committer:
voltxd
Date:
Wed May 18 18:07:09 2022 +0000
Revision:
115:156b8234f2de
Parent:
114:c1f7be27aa5d
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
voltxd 113:2f8f255e99f2 1 #ifndef TOOLBOX_HPP
voltxd 113:2f8f255e99f2 2 #define TOOLBOX_HPP
voltxd 113:2f8f255e99f2 3
voltxd 114:c1f7be27aa5d 4 #define PI 3.14159265358979323846
voltxd 114:c1f7be27aa5d 5
voltxd 113:2f8f255e99f2 6 double limitToInterval(double value, double min, double max);
voltxd 115:156b8234f2de 7 float convertBytesToFloat(char *array, char startIndex);
voltxd 115:156b8234f2de 8 void convertFloatToBytes(float *f, char *array, char startIndex);
voltxd 113:2f8f255e99f2 9
voltxd 113:2f8f255e99f2 10 #endif