TLC for C++ S-Function

1 次查看(过去 30 天)
I have an S-function that needs to be nested inside of a for-each loop, which itself needs to be inside a reference model in accelerator mode. The S-function is written in C++ and makes heavy use of external libraries, classes, and the PWork and DWork vectors. It is also built to work with multiple instances and inside of iterator blocks (for, while). I'm new to TLC, and this seems a bit daunting due to the lack of clear documentation, but is writing a TLC file for such an S-function even possible?
For starters, I made a simple S-function in C and TLC that has one input and two outputs with very simple math in between. That was simple enough, but converting it to C++ immediately posed the issue of not being able to specify C++ as the target language because the simulink target was C. Is this avoidable?

采纳的回答

Mark McBroom
Mark McBroom 2019-4-20
If the Simulink target is C, then the code that is emitted from your TLC will be placed into C files generated by Simuilnk and therefore will have to be C code. A common approach to interfacing with C++ code is to manually write a C++ file that contains a function to wrap your C++ code ( constructing objects, calling member functions, etc) and the use extern "C" to make your wrapper C++ function callable from the C code generated by Simulink.
#ifdef __cplusplus
extern "C" {
endif
  2 个评论
Thomas Satterly Satterly
That's what I ended up doing, along with making use of a rtwmakecfg() function to link up the dependancies. It compiles in both normal and accelerated mode, but errors out at some point during the first call to the Output function in accelerated mode. Is there any support for debugging TLC files?
Mark McBroom
Mark McBroom 2019-4-24
Yes, there is a TLC debugger that you can use to set break points, look at variables, single step, etc. It is a command line debugger but works pretty good.
Start by setting a breakpoint in your TLC code. Easiest way is to just add
%breakpoint
to your TLC code. This link provides list of available debugger commands

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simulink Coder 的更多信息

产品


版本

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by