Array as a #define instead of scalar

조회 수: 2 (최근 30일)
Jonas
Jonas 2020년 4월 23일
댓글: Jonas 2020년 4월 27일
Hi all
I want to use a small array as a Storage Class 'define':
However, when I use this in my model and try to generate code, it gives the following error:
So it seems I cannot use an array as a #define in code. Is this to be expected? Is there a work-around?
With kind regards,
Jonas

채택된 답변

Ganesh Regoti
Ganesh Regoti 2020년 4월 27일
Hi Jonas,
The error thrown is an expected behaviour.
To work around this issue, you can
  1. Use the "ImportedDefine" Storage class and write a header file to define the array. You will be able to specify the header file from the Model Explorer under Code Generation options > Custom attributes. In this way, Simulink will depend on the header file to provide the definition for "CS_READ_FW_VERSION" and not generate macro directives. Inside the header file you define a constant array such as "const double CS_READ_FW_VERSION[] = {82, 86};"
  2. Use the "Const" Storage class instead of "Define"
Hope this helps!
  댓글 수: 1
Jonas
Jonas 2020년 4월 27일
Hi Ganesh, thank you for your reply.
I think I will use the 'Const' storage class. This will provide me with better traceability since I can define the variable in my Data Dictionary, and can use the same naming without danger of conflicts in the naming in my model. The only downside is that the 'const' will use a memory space and it will not be inlined in the code such as a 'define' would.
With kind regards,
Jonas

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deployment, Integration, and Supported Hardware에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by