- Open “AUTOSAR Component Designer” app from the “Apps” tab in the Simulink Toolstrip.
- Select “Code Interface” > “AUTOSAR Dictionary” to configure the AUTOSAR dictionary.
- Select the “AtomicComponents” tab in the “AUTOSAR” tree and modify the “Name” value of the component from “B” to “A”.
- Close the dictionary and generate the code for the model.
C code MemMap.h file name change
16 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I am writing you to ask about modifying memory map lines in an AUTOSAR Simulink model generated using Autosar code generation.
Currently, my model name is ‘B’ and my model c code includes memory map lines in the following format:
/* SwAddrMethod CODE for Runnable */
#define B_START_SEC_CODE
#include "B_MemMap.h"
I would like to modify these lines to:
/* SwAddrMethod CODE for Runnable */
#define A_START_SEC_CODE
#include "A_MemMap.h"
Thank you for support
0 件のコメント
回答 (1 件)
Sumukh
2024 年 9 月 24 日
Hi Betül,
I am assuming that the code you are referring to is the AUTOSAR software address methods (SwAddrMethods) for AUTOSAR atomic components. The prefix of the “MemMap.h” header file is the “Name” value of the AUTOSAR atomic component mapped to the model. It has the name of the model by default. This name remains the same when the model’s name is modified. You can follow the below steps to change the AUTOSAR component name:
The dictionary will replace the prefix of the header file from “B” to “A”. This name does not depend on the model’s name and can be modified as necessary. You can refer to the following documentation to know more about the AUTOSAR atomic components:
I hope this answers your query.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で AUTOSAR Blockset についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!