How to create an ExportedDefine global variable in Simulink for Code Generation?
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Fangjun Jiang
il 2 Gen 2024
Spostato: Fangjun Jiang
il 2 Gen 2024
Create a Simulink.Parameter, specify the storage class as "Define".
2 Commenti
Fangjun Jiang
il 3 Gen 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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Simulink Coder in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!