How to call C custom variable or constant in Simulink Model

15 views (last 30 days)
Good evening,
I'm looking for a method to call a variable or constant defined in a custom C code inside a simulink model.
I already use several functions with C Caller both in the model and in Stateflow.
Can someone help me?

Answers (1)

Mark McBroom
Mark McBroom on 4 May 2020
not sure what you mean by "call", but one solution would be to put the variable inside a C function that simply returns the constant. Then use C Caller block to call this new C function.
Thanks.
Mark.
  2 Comments
Mirko
Mirko on 4 May 2020
Hi Mark, thanks for the reply.
The idea you suggested to me is feasible, but I thought there was a different method to use a constant defined in the Header directly as a constant without having to use a function. Within stateflow this is possible just use in any formula the name of the variable defined in the .h file. Is there a Simulink block that allows me to do this? Could the Data Store Memory be useful?
Thanks
Mirko
Mark McBroom
Mark McBroom on 4 May 2020
If you want to hvae the external C file declare and define the variable, you can have the generated code use that external definition. This can be done by creating a Simulink.Parameter data object, and then setting it's storage class to be "Imported Extern". This will allow you to use the constant in Simulink, but the declaration and definition are done in an external, hand written C file.
This link to the doc gives more details:
Thanks.
Mark.

Sign in to comment.

Categories

Find more on Simulink Functions in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!