How can I stop a build process based on some flags in my custom TLC code in Rea-Time Workshop ?

2 views (last 30 days)

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 30 Dec 2009
You can use TLC code as shown in the example below to conditionally stop the build process with appropriate message:
%if ISEQUAL(SFcnParamSettings.FCN_INNAME,"#void")
%warning "My value is bad:=%<SFcnParamSettings.FCN_INNAME>"
%stop
%else
%%do nothing
%endif

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!