How to create an ExportedDefine global variable in Simulink for Code Generation?
7 views (last 30 days)
Show older comments
For Code Generation from Matlab code the storage class 'ExportedDefine' allows to make a simulink variable appear in generated C-code as
#define var_name var_value
as described here: https://de.mathworks.com/help/ecoder/ref/coder.storageclass.html.
Is there a way to do this for a (constant) variable when generating code from a Simulink model?
Thanks for your help!
0 Comments
Accepted Answer
Fangjun Jiang
on 2 Jan 2024
Moved: Fangjun Jiang
on 2 Jan 2024
Create a Simulink.Parameter, specify the storage class as "Define".
2 Comments
Fangjun Jiang
on 3 Jan 2024
Your asked "Is there a way to do this for a (constant) variable when generating code from a Simulink model?"
If just want to have the .h file to do the #define, why not create the .h file directly, manually or create a script to write the text file.
More Answers (0)
See Also
Categories
Find more on Simulink Coder in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!