How to create an ExportedDefine global variable in Simulink for Code Generation?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Felix
am 2 Jan. 2024
Kommentiert: Fangjun Jiang
am 3 Jan. 2024
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 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 2 Jan. 2024
Verschoben: Fangjun Jiang
am 2 Jan. 2024
Create a Simulink.Parameter, specify the storage class as "Define".
2 Kommentare
Fangjun Jiang
am 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.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Simulink Coder finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!