Fix compiler detection for avr-gcc with -std=gnu99We don't seem to have strtof, but the compiler detection says we do.Tweaking the compiler detection code to set HAVE_STRTOF to 0 seems tofix it.
libscpi/inc/scpi/cc.h @@ -116,6 +116,8 @@ #if defined(__AVR__) #include <stdlib.h> #define HAVE_DTOSTRE 1 #undef HAVE_STRTOF #define HAVE_STRTOF 0 #endif /* default values */