How to call C custom variable or constant in Simulink Model
8 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
回答(1 个)
Mark McBroom
2020-5-4
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 个评论
Mark McBroom
2020-5-4
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulink Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!