Using multiple copies of the same MATLAB Function Block

11 ビュー (過去 30 日間)
maiaL
maiaL 2020 年 7 月 13 日
回答済み: maiaL 2020 年 7 月 13 日
Hello,
I'm trying to use the same MATLAB Function block multiple times in the same Simulink model. These duplicate instances of the MATLAB function are inside a library. I think this is a key piece of information for this issue.
If I have one copy of the block, the model compiles just fine. If I add a second MATLAB function block, identical to the first one, I get a conflicting declaration error that happens when the S-Functions are being generated for the MATLAB function blocks:
"C:\Program Files\MATLAB\R2020a\bin\win64\mex.exe" -R2018a -c -DMATLAB_MEX_FILE -I"C:\dev\Simulink\Models\controller\slprj\_sfprj\controller\lib_controller\sfun\src" -I"C:\dev\Simulink\Models\controller" -I"C:\Program Files\MATLAB\R2020a\extern\include" -I"C:\Program Files\MATLAB\R2020a\simulink\include" -I"C:\Program Files\MATLAB\R2020a\simulink\include\sf_runtime" -I"C:\Program Files\MATLAB\R2020a\stateflow\c\mex\include" -I"C:\Program Files\MATLAB\R2020a\rtw\c\src" -I"C:\dev\Simulink\Models\Controller\slprj\_sfprj\controller\lib_controller\sfun\src" CFLAGS="$CFLAGS " lib_controller_sfun.cpp Building with 'MinGW64 Compiler (C++)'. In file included from C:\dev\Simulink\Models\Controller\slprj\_sfprj\controller\lib_controller\sfun\src\c2_lib_controller.h:42:0, from C:\dev\Simulink\Models\Controller\slprj\_sfprj\controller\lib_controller\sfun\src\lib_controller_sfun.cpp:5: C:\dev\Simulink\Models\controller/interface_parameters.h:15:3: error: conflicting declaration 'typedef struct CURVE_POINT CURVE_POINT' } CURVE_POINT; ^~~~~~~~~~~ In file included from C:\dev\Simulink\Models\Controller\slprj\_sfprj\controller\lib_controller\sfun\src\c1_lib_controller.h:42:0, from C:\dev\Simulink\Models\Controller\slprj\_sfprj\controller\lib_controller\sfun\src\lib_controller_sfun.cpp:4: C:\dev\Simulink\Models\controller/interface_parameters.h:15:3: note: previous declaration as 'typedef struct CURVE_POINT CURVE_POINT' } CURVE_POINT; ^~~~~~~~~~~
How could this be prevented? I thought it was possible to use multiple instances of the same MATLAB Function block without a problem.
  3 件のコメント
Walter Roberson
Walter Roberson 2020 年 7 月 13 日
Can you protect the code with an #ifndef ?
#ifndef interface_parameters_h
#define interface_parameters_h
then the code
#endif
maiaL
maiaL 2020 年 7 月 13 日
編集済み: maiaL 2020 年 7 月 13 日
All these files are generated code from the compilation of the main model, I don't think I'm supposed to edit them.

サインインしてコメントする。

採用された回答

maiaL
maiaL 2020 年 7 月 13 日
Fixed the issue by encapsulating the MATLAB Function block in a subsystem in the library.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBlock Libraries についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by