.

Dependencies:   L432KC_SPI_Pey_Lal

toolbox.hpp

Committer:
voltxd
Date:
2022-05-23
Revision:
118:67d6698069fd
Parent:
115:156b8234f2de

File content as of revision 118:67d6698069fd:

#ifndef TOOLBOX_HPP
#define TOOLBOX_HPP

#define PI 3.14159265358979323846

double limitToInterval(double value, double min, double max);
float convertBytesToFloat(char *array, char startIndex);
void convertFloatToBytes(float *f, char *array, char startIndex);

#endif