- Open the Configuration Parameters dialog box. On the Optimization pane, select “Remove internal data zero initialization”
- Use the following command prompt to set the model parameter “ZeroInternalMemoryAtStartup” to “off”
Similink create 2 Initialize Procs
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I use Matlab to generate code and the output generated code as below:
FUNC(void, DASwCpt_SentAcqn_CODE) DASwCpt_SentAcqn_Proc_Ini(void)
{
...
}
FUNC(void, DASwCpt_SentAcqn_CODE) RE_DASwCpt_SentAcqn_Initialize(void)
{
/* (no initialization code required) */
}
I don't know why it always create the RE_DASwCpt_SentAcqn_Initialize proc,
How to setup the model to avoid creating this proc
Thanks
0 Kommentare
Antworten (1)
Harsh
am 20 Feb. 2025
You can remove the zero-initialization code for internal data in the following ways:
set_param(model, 'ZeroInternalMemoryAtStartup', 'off');
For more information regarding this please use the following command to view the documentation-
doc Remove Zero Initialization Code
0 Kommentare
Siehe auch
Kategorien
Mehr zu Simulink Coder finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!