Is it possible to eliminate the BlockIO contents when generating code?
6 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Monika Jaskolka
2021-6-10
You probably have to change your model configurations so that code generation makes these changes:
4 个评论
Monika Jaskolka
2021-6-11
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.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!