Is it possible to eliminate the BlockIO contents when generating code?
6 views (last 30 days)
Show older comments
Asang singh
on 7 Jun 2021
Commented: Asang singh
on 14 Jun 2021
I am using MATLAB 2018b SIMULINK to generate c codes. Ater generating the c code in .h file I get two structures one is of dwork and one is blockIo.
My question is how can i delete the conents of BlockIO as I dont need them.
for example:
struct tag_RTM_hello {
BlockIO_hello *blockIO; => my interset is in this
D_Work_hello *dwork;
};
0 Comments
Accepted Answer
Monika Jaskolka
on 10 Jun 2021
You probably have to change your model configurations so that code generation makes these changes:
4 Comments
Monika Jaskolka
on 11 Jun 2021
If you do not what to generate any signal/state variables, then you cannot use any blocks that require signal/state variables. For example, a Unit Delay block requires a variable in the code because it needs to store its previous value. If you don't store this value, then you fundamentally cannot implement the block in code. The HTML code generation report provides links from these variables to the model. You can trace the variables back to the model, and try to delete any block that causes a signal/state variable, but I suspect that that would mean you have an empty (or close to empty) model.
More Answers (0)
See Also
Categories
Find more on Simulink Coder in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!