Why is the model entry function SetEventsForThisBaseStep not in the generated code in Real-Time Workshop Embedded Coder 5.1 (R2008a)?

7 views (last 30 days)
In the generated code, the model entry function "model_SetEventsForThisBaseStep" is not generated in Real-Time Workshop Embedded Coder 5.1 (R2008a). In R2007b, this function is generated.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 29 Jun 2011
Beginning in Real-Time Workshop Embedded Coder 5.1 (R2008a), ERT no longer generates "model_SetEventsForThisBaseStep" in model.c and model.h, and you should avoid using the function. The model event flags are now maintained by code in a model's generated example main program (ert_main.c). For more information, see Optimizing Task Scheduling for Multirate Multitasking Models on RTOS Targets in the Embedded Coder documentation.
If you want this function to be generated for compatibility reasons, replace the following line in ert.tlc or your custom system target file:
%assign InlineSetEventsForThisBaseRateFcn = TLC_TRUE
with
%assign InlineSetEventsForThisBaseRateFcn = TLC_FALSE

More Answers (0)

Categories

Find more on Deployment, Integration, and Supported Hardware in Help Center and File Exchange

Products


Release

R2008a

Community Treasure Hunt

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

Start Hunting!