- https://www.mathworks.com/help/simulink/slref/getactiveconfigset.html?s_tid=doc_ta
- https://www.mathworks.com/help/simulink/slref/get_param.html?searchHighlight=get%20parameters&s_tid=srchtitle_support_results_1_get%2520parameters
- https://www.mathworks.com/help/simulink/slref/set_param.html
Question about Relative Path Variable definitions
9 ビュー (過去 30 日間)
古いコメントを表示
Hi,
Where do I find path variable definitions? Such as TARGET_ROOT shown below:

I want to use a different relative path for a different .ccxml config file.
Best,
Kevin
0 件のコメント
回答 (1 件)
Saurabh
2024 年 3 月 22 日
Hi Kevin,
I can figure out that you need to set a relative path to the project root for a hardware configuration file.
To address this issue, setting the model's InitFcn callback to execute a configuration script is recommended. Below is an initial version of the code to consider. Modifications may be necessary to ensure it aligns with the project's specific requirements.
cs = getActiveConfigSet(gcs);
% retrieves the active configuration set of the current Simulink model.
ctd = get_param(cs, 'CoderTargetData');
% This line extracts the CoderTargetData property from the active configuration set.
ctd.Runtime.LoadCommandArg = [pwd, '\my_file.ccxml'];
% The .Runtime.LoadCommandArg property of ctd (CoderTargetData) is then set to this full path.
set_param(cs, 'CoderTargetData', ctd);
% Finally, the modified CoderTargetData object (ctd), now containing the updated path to the configuration file, is written back to the active configuration set of the model.
For more information about the functions used you can refer to the following links:
I hope that was helpful.
参考
カテゴリ
Help Center および File Exchange で Install Products についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!