Correct me if I am missing any information, but I was not able to use some standard float operations like floor and ceil and I required those when calculating register values for a HAL. Am I missing a necessary import for this? I now added the libm dependency and was able to use the floorf functions for my purposes, but I think not being able to use functions like floor is related to having the #[no_std] attribute on the application?
If that is the case, it might be worth an idea to add a small section related to how to perform some basic math operations which are reserved to std normally
Correct me if I am missing any information, but I was not able to use some standard float operations like
floorandceiland I required those when calculating register values for a HAL. Am I missing a necessary import for this? I now added thelibmdependency and was able to use thefloorffunctions for my purposes, but I think not being able to use functions likeflooris related to having the#[no_std]attribute on the application?If that is the case, it might be worth an idea to add a small section related to how to perform some basic math operations which are reserved to
stdnormally