Simulink Coder GRT Target C code integration

55 ビュー (過去 30 日間)
Massimiliano Curti
Massimiliano Curti 2014 年 1 月 23 日
I'm working on a Simulink model and i'm generating the code of a Sybsystem using the GRT Target of Simulink Coder (Matlab R2012B). Now i'd like to integrate this code into a custom C/C++ application. My question is: using GRT target what is the minimum number of files (and what are their names) i have to bring into my application project?
Opening some header files i see some specific #includes like:
#include "rtw_continuous.h"
#include "rtw_solver.h"
#include "tmwtypes.h"
But i don't find these files in the folder containing the generated code. Since my Simulink model is using a Discrete Fixed-Step solver, i don't understand the reason of these files.
Thanks,
regards

採用された回答

GianCarlo
GianCarlo 2014 年 1 月 28 日
編集済み: GianCarlo 2014 年 1 月 28 日
Hi Massimiliano,
The number and names of the files generated/required when you generate code from your model depends on the blocks and settings used in your model. However, there is an easy way to manage what you're trying to do. You can use the packNGo feature of Simulink Coder to have all of the required generated code files put into a zip file for you to make exporting the code into your project easier. See the documentation here: Relocate Code to Another Development Environment
You can turn on this export in the configuration parameters:
.
The files that are not in your generated code directory are standard header files that you will be able to find in your MATLAB installation folders. They contain support for the different solvers and blocks you might use in your model. The types header file contains type definitions used in the generated code, such as int32_T. Using PackNGo means you won't have to find them for yourself and copy them when you export your code to your project.
  6 件のコメント
Michael  Cappiello
Michael Cappiello 2020 年 1 月 21 日
Same here. I am missing rtw continuous.h
MUNI VENKATA SAI KUMAR KONDURU
MUNI VENKATA SAI KUMAR KONDURU 2020 年 10 月 12 日
Its working for me. I have followed the instructions and it generates a zip folder containing the continious and solver header files in a seperate folder.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimulink Coder についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by