-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
floating point functions work? #104
Comments
Undefined reference normally points to a missing #include <math.h> Hope this helps. |
the undefined reference above means that the methods mentioned are not implemented and not tha they are not defined :) |
compiles fine now :) closing this issue |
brentru
pushed a commit
to adafruit/arduino-esp32
that referenced
this issue
Oct 22, 2024
make symlink with library name rather than 'Adafruit_Test_Library'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I inserted this function into a sketch that compiles and runs with no problem:
float test = 145366.45f*(1.0f - powf((VBAT/1013.25f), 0.190284f));
where VBAT is a float measured using analogRead.
The sketch does not compile and returns this error:
Am I missing a library or something?
The text was updated successfully, but these errors were encountered: