How to exclude Simulink blocks from code generation?
이전 댓글 표시
Basically, my project is: to acquire data from a USB webcam and perform some color thresholding and object tracking. The output obtained from these blocks is then given to Arduino for hardware implementation. Now if I directly build the model, it generates code for the whole model and then deploys to Arduino board which is basically consuming more memory and making my model to run at a slower speed.
How can exclude these blocks(computer vision and image processing toolbox) from code generation?
댓글 수: 1
Robert Miklosovic
2024년 5월 10일
I can use the following statement to ignore code sections when using Matlab Coder, but it does not work with PLC coder.
if isempty(coder.target)
% Place code here you want to exclude from code generation
end
Is there a way to ignore code sections only during PLC code generation? Is there a way to detect in code that PLC Coder is operating on the code?
답변 (1개)
TAB
2018년 10월 1일
0 개 추천
If you want to exclude some blocks from Simulion and Code Generation, then you can comment them out.
As far I know, there is no way to exclude some block only from code generation.
카테고리
도움말 센터 및 File Exchange에서 Arduino Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!