Hi @Hrohn It seems like you are facing an issue with the linker not finding the reference to the `ceilf` function. To resolve this issue, you need to add the math library to your project's linker settings. Here's how you can do that:
- In S32 Design Studio, right-click on your project in the Project Explorer and select 'Properties.'
- Go to 'C/C++ Build' > 'Settings' > 'Cross ARM C++ Linker' > 'Libraries.'
- Click on the '+' button under 'Libraries (-l)' and add 'm' (without quotes) to the list. This will link the math library to your project.
- Click 'Apply' and then 'OK' to save the changes.
- Rebuild your project, and the linker should now find the reference to the `ceilf` function.
By following these steps, you should be able to resolve the undefined reference issue for the `ceilf` function in your S32DS project.
If you still face any issues, please provide more details about your project setup and configuration.
Regards,