Real math fix

This commit is contained in:
Blaz Kristan 2024-05-09 23:58:58 +02:00
parent 88372cd516
commit a320f16404

View File

@ -409,14 +409,14 @@ void clearEEPROM();
float fmod_t(float num, float denom);
#else
#include <math.h>
#define sin_t sin
#define cos_t cos
#define tan_t tan
#define asin_t asin
#define acos_t acos
#define atan_t atan
#define fmod_t fmod
#define floor_t floor
#define sin_t sinf
#define cos_t cosf
#define tan_t tanf
#define asin_t asinf
#define acos_t acosf
#define atan_t atanf
#define fmod_t fmodf
#define floor_t floorf
#endif
//wled_serial.cpp