/ Mbed OS BagnoleAuto_PA_PAUL

Dependencies:   L432KC_SPI_Pey_Lal

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers toolbox.hpp Source File

toolbox.hpp

00001 #ifndef TOOLBOX_HPP
00002 #define TOOLBOX_HPP
00003 
00004 #define PI 3.14159265358979323846
00005 
00006 double limitToInterval(double value, double min, double max);
00007 float convertBytesToFloat(char *array, char startIndex);
00008 void convertFloatToBytes(float *f, char *array, char startIndex);
00009 
00010 #endif