How to generate a single ert_main.c for multiple atomic subsystems using Embedded Coder?
6 次查看(过去 30 天)
显示 更早的评论
Hello,
I am new to Embedded Coder. I am trying to generate C code from the logic modelled in simulink. I have different atomic subsystems doing different tasks ( functions in the sense of C code). I want to generate separate .c files for each of the subsystems, but I need one single ert_main.c which calls all of the atomic subsystem function calls. May I know if this is possible?
Best regards,
Sreejith
2 个评论
C B
2021-11-25
I dont know this will work or not but maybe you can try model referancing
Let me know it works or not.
回答(1 个)
Aiswarya
2024-3-1
编辑:Aiswarya
2024-3-1
Hi,
I understand that you want to generate code for a model involving subsystems using Embedded coder and that you would like to generate separate ".c" files for each subsytem with a single ert_main.c for the model. In order to do this, perform the following steps:
- Open the Configuration Parameters dialog box (Shortcut: Ctrl + E). In the Code Generation tab, navigate to Code Placement section and set the File Packaging format to be "Modular".
- For each of the subsytems perform the steps (Step 2 - 6) given in the following documentation link: https://www.mathworks.com/help/rtw/ug/generate-separate-code-and-files-for-subsystems-in-a-model.html#mw_a1bf424c-072c-4c8e-abf7-8f7ecabec914
On generating the code, in the Code generation report, you can observe that there is a ert_main.c file, model files and under the "Subsytem files" section there are files corresponding to each subsytem which only has code for that particular function. This way you can modularise your code as desired.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deployment, Integration, and Supported Hardware 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!