How to create an ExportedDefine global variable in Simulink for Code Generation?
10 ビュー (過去 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!