How do I make sure Simulink Constants are coded as #define?
이전 댓글 표시
If I have a constant in the Simulink model, this ends up being defined in a structure which then ends up in RAM.
This results in really inefficient software as data needs to be loaded from ROM to RAM at startup and the compiled code has to load the same data from RAM. As the data is constant this also blocks the compiler from producong the most efficient code.
These constants should either be directly coded in the C code or #define
I can't find any settings that make this do what I need.
채택된 답변
추가 답변 (2개)
David
2015년 3월 23일
0 개 추천
댓글 수: 1
Sebastian Castro
2015년 3월 23일
First off, glad the answer helped! Secondly -- yes, this page wasn't too straightforward to find.
I went into the MATLAB help and searched for "#define preprocessor". Then, I filtered my results to only look at Embedded Coder. Filtering by product generally helps remove the "noise" from my searches.
- Sebastian
카테고리
도움말 센터 및 File Exchange에서 Simulink Coder에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!