Skip to content
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

Open
tofrnr opened this issue Sep 10, 2017 · 5 comments
Open

floor() and ceil() return integer values, not double (float) #81

tofrnr opened this issue Sep 10, 2017 · 5 comments

Comments

@tofrnr
Copy link

tofrnr commented Sep 10, 2017

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!

@facchinm
Copy link
Member

@cousteaulecommandant
Copy link

cousteaulecommandant commented Dec 25, 2017

As a workaround, use (floor)(x) and (ceil)(x), which will not use the macro but the actual function.

Alternatively, you can create a new tab in your Arduino project with a name ending in .cpp and put your pure C++ code there, with none of the Arduino.h nonstandard magic.

@tofrnr
Copy link
Author

tofrnr commented Dec 26, 2017

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.
So finally the Aduino gibberish has to be adjusted to standard C definitions, that's it, nothing else.

@cousteaulecommandant
Copy link

...well, I did say it was a workaround, didn't I? :)
In any case I think Arduino.h will eventually have to be purged from macros and instead use standard C++ functions, or templated functions when no alternative exists.

@sandeepmistry sandeepmistry transferred this issue from arduino/Arduino Sep 16, 2019
@matthijskooijman
Copy link
Collaborator

I believe this is already fixed in the ArduinoCoreAPI repo. It does not define any ceil or floor macros, and looking through the history, it never has. It does include <math.h>, so I think that means it effectively makes the standard library versions available.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants