How to generate C function to return a bool

3 次查看(过去 30 天)
I am using Simulink Coder v23.2 (R2023b) 01-Aug-2023.
I would like to generate C code for a function to return a boolean value; I am unable to make it do that.
For example:
variable retval is of type boolean, and scope Output.
The code that is generated is:
void isSensorActive(bool *retval)
{
*retval = (MY_DW.sensorActive == 85ULL);
}
What I want is for the function to actually return a bool.
Something like:
bool isSensorActive(void)
{
return (sensorActive == 85ULL);
}
How do I make Simulink generate a function to return a boolean?
Thank you for any suggestion you can provide.

回答(1 个)

Raghava S N
Raghava S N 2024-3-14
Hi Duane,
From the second attached code snippet (the desired generated code), I assume that the intended functionality is to have the functions generated during code generation “pass by value”.
This feature can be enabled for the either the top model in the current model hierarchy or the current referenced model.
In the Model Configuration Parameters, under the Model Referencing tab, expand the Advanced Parameters option. The check box for “Pass fixed-size scalar root inputs by value for code generation” should be enabled to use this feature.
Some additional documentation that may be of help –
Best Regards,
Raghava

类别

Help CenterFile Exchange 中查找有关 Simulink Coder 的更多信息

产品


版本

R2010b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by