You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the Simulink model detects a runtime error, is there any way for it to report the error that would work in the compiled FMU? assert and error appear essentially unsupported by Matlab Coder.
The text was updated successfully, but these errors were encountered:
assert may not work, but apparently Simulink assertion blocks do (also limit checkers etc.): Simulink Coder generates calls to utAssert, which is a macro expanding to nothing by default, but that can be changed. One could have it set a flag that eventUpdate would check.
If the Simulink model detects a runtime error, is there any way for it to report the error that would work in the compiled FMU?
assert
anderror
appear essentially unsupported by Matlab Coder.The text was updated successfully, but these errors were encountered: