Legacy code tool with void function prototype in OutputFcnSpec

4 次查看(过去 30 天)
Hi everyone im trying to use legacy code tool to generate s function for my C code generated with simulink coder (for SIL test) but the problem is my output function is void (my I/O are declared as extern at the start of the code) its like “void function_step(void)” so when i generate my s function with legacy code its generated without inputs or outputs.
and even when i add inputs and outputs in my function prototype the generated s function does’nt work and its totally normal because the legacy code cant know my I/O … so if someone could help me please because im trying more than a month to modify the s function generated and try every solution but without a result ....
thanks everyone in advance
here's my script
load('myBues.mat')
def = legacy_code('initialize');
% Find c files:
list = dir('*.c');
def.SourceFiles = {list.name};
% Find header files:
list = dir('*.h');
def.HeaderFiles = {list.name};
% mex function name and output spec:
def.SFunctionName = 'Sfunc';
% here when i have the problem
% instead of void my code has 12 inputs and 22 outputs and when
% i use them in the function_step the S function generated doesnt work correctly
def.OutputFcnSpec = 'void function_step(void)';
def.InitializeConditionsFcnSpec = 'void func_initialize(void)';
def.TerminateFcnSpec = 'void func_terminate(void)';
% % to compile and launch the s function in simulink
legacy_code('generate_for_sim',def);
legacy_code('slblock_generate',def);

采纳的回答

SAID ELMOTAOUAKKEL
i finnally found an answer
and its work perfectly i change the function prototype in the C codes to much the s function that i want and i use this prototype in the legacy code and things workd correctly
for any details welcome
  2 个评论
BABANBHAIGARI SHAFIULLAH
Hi SAID ELMOTAOUAKKEL, could you please share a sample prototype, like, how the legacy function originally was, and how the new function prototype is, after the changes you made .
Thanks in advance.
vamshi krishna kammadanam
Hi SAID ELMOTAOUAKKEL,
I am trying to figure out a similar void function(void). How were you able to change it?
Does legacy code tool support "void function(void)" ?
Regards

请先登录,再进行评论。

更多回答(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