Effacer les filtres
Effacer les filtres

Simulink Coder-Customizing grt.tlc generated source code.

3 vues (au cours des 30 derniers jours)
Joseph Stalin
Joseph Stalin le 25 Fév 2013
Dear Techies, I am working in Code generation using Simulink Coder.(dont have Embedded Coder license).I am using grt.tlc.
The generated code is messy.It is having my algorithm and some other RTW codes.I want to customize to remove RTW code dependencies.Currently the generated code contains the following in model.h file.I want to generate code without these interfaces.
Anybody can help me in this regard?
Ex: /* Macros for accessing real-time model data structure */ #ifndef rtmGetBlkStateChangeFlag # define rtmGetBlkStateChangeFlag(rtm) ((rtm)->ModelData.blkStateChange) #endif
#ifndef rtmSetBlkStateChangeFlag # define rtmSetBlkStateChangeFlag(rtm, val) ((rtm)->ModelData.blkStateChange = (val)) #endif
regards, Joseph

Réponse acceptée

TAB
TAB le 25 Fév 2013
There are very few code customization options are available with GRT target. AFAIK, there is no option in grt to remove the part of code you have mentioned.
There are 2 alternatives:- You can write a matlab script to post process the generated code OR use ERT target.
  6 commentaires
Joseph Stalin
Joseph Stalin le 27 Fév 2013
Thanks a lot for your answers.I will look into this documentation.
Joseph Stalin
Joseph Stalin le 12 Mar 2013
Hi Tab,
Is it possible to pass buildinfo structure (To access the generated source codes for edition) as parameter to mycustomization ? like below function GenerateMyCode(mdlName) rtwbuild(mdlName); % Generated the code MyCustomization(buildinfo ); % Call your script to edit generated code end

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Simulink Coder dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by