How to create an ExportedDefine global variable in Simulink for Code Generation?
7 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Fangjun Jiang
2024-1-2
移动:Fangjun Jiang
2024-1-2
Create a Simulink.Parameter, specify the storage class as "Define".
2 个评论
Fangjun Jiang
2024-1-3
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.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!