If I don't want simulink to generate the file "rtwtypes.h", how can I do?
Show older comments
I want use Simulink to generate my control function,but It always to generate at least file: "model.c","model.h" and "rtwtypes.h";
and the"rtwtypes.h" file looks like that , If I Only want generate two file " model.c" and "model.h ", How can I do? thanks.
58 typedef int int8_T;
59 typedef unsigned int uint8_T;
60 typedef int int16_T;
61 typedef unsigned int uint16_T;
62 typedef long int32_T;
63 typedef unsigned long uint32_T;
64 typedef float real32_T;
65 typedef double real64_T;
1 Comment
Tertugrul Tertugrul
on 1 Mar 2021
58 typedef int int8_T ;
59 typedef unsigned int uint8_T ;
60 typedef int16_T ;
61 typedef unsigned int uint16_T ;
62 typedef long int32_T ;
63 typedef unsigned long uint32_T ;
64 typedef float real32_T ;
65 typedef çift real64_T ;
Accepted Answer
More Answers (0)
Categories
Find more on Simulink Coder in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!