Clear Filters
Clear Filters

How to generate C function to return a bool

3 views (last 30 days)
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.

Answers (1)

Raghava S N
Raghava S N on 14 Mar 2024
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

Categories

Find more on Simulink Coder in Help Center and File Exchange

Products


Release

R2010b

Community Treasure Hunt

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

Start Hunting!