-
-
Notifications
You must be signed in to change notification settings - Fork 129
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
floor() and ceil() return integer values, not double (float) #81
Comments
Related with https://github.com/arduino/Arduino/issues/6098 |
As a workaround, use Alternatively, you can create a new tab in your Arduino project with a name ending in |
IMO that's stupid to have to use cast functions as worksarounds, because floor() and ceil() are standard C math functions which are simply messed up by Arduino gibberish. |
...well, I did say it was a workaround, didn't I? :) |
I believe this is already fixed in the ArduinoCoreAPI repo. It does not define any |
floor() and ceil() return integer values, not double (float), other than ANSI C math.h
http://www.cplusplus.com/reference/cmath/ceil/
http://www.cplusplus.com/reference/cmath/floor/
(of course this issue is crucial especially for floats which are (absolutely) larger than the integer ranges)
Please make Arduino math functions comply to C standards, there is no need for divergent definitions!
The text was updated successfully, but these errors were encountered: