Embedded Coder / Simulink & Stateflow : how to force inputs to be passed by reference?

2 vues (au cours des 30 derniers jours)
Tim Shin
Tim Shin le 5 Mai 2016
Commenté : Heidi Zaiter le 3 Mar 2020
Is there way to reuse the same memory location of the input for the outputs - essentially passed by reference? The use case I have is, a structure containing several parameter and flags are passed into a stateflow block then after processing, the some flags in the same structure is modified then outputted to the next blocks, then consequent blocks do similar things and passes the next and so on.
In the generated code, the input structure is copied to a local variable, then the new instance of structure is passed out to the next block. Due to the efficiency reason, I would like to avoid creating the local copies.
One workaround I tried is to use DataStoreMemory and set it as global variable, but the deficiency comes from the fact that when multiple block tries to access the variable, execution order is not guaranteed unless I set the block priorities. This approach sort of works but is not preferred due to the readability reason (want to have a signal line going from one block to next).
Do anyone have any suggestions on how to achieve this efficiently without relying on the DataStoreMemory?

Réponses (1)

Vaibhav Awale
Vaibhav Awale le 6 Mai 2016
Hi Tim,
Using "Reusable" custom storage class might help in this case. Please refer to following documentation pages:
This might help you in achieving what you want.
Hope this helps.
Regards,
Vaibhav
  2 commentaires
Tim Shin
Tim Shin le 6 Mai 2016
Vaibhav, Thank you for the reply.
It is almost what I want to achieve, but currently reuse storage class is restricted to a pair of signal lines. In the case of multiple cascaded blocks, I am not able to make it reuse same variables - keeps creating copies.
Heidi Zaiter
Heidi Zaiter le 3 Mar 2020
Yeah it doesn't work at all, it seems like a limitation of MATLAB / Embedded coder.
Even in 2020...

Connectez-vous pour commenter.

Catégories

En savoir plus sur Embedded Coder dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by