32 lines
1.3 KiB
Matlab
32 lines
1.3 KiB
Matlab
% Copyright 2024 Volvo Car Corporation
|
|
% Licensed under Apache 2.0.
|
|
|
|
function updateCodeSwConfig(RootFolder, model_path)
|
|
% updateCodeSwConfig(RootFolder, model_path)
|
|
%
|
|
% Executes 'py -3.6 -m powertrain_build.config models' for the model.
|
|
% This script reads the .json, .c and .h-files and looks for configs for
|
|
% the variables that already have a config in the json.
|
|
%
|
|
% Arguments:
|
|
% RootFolder: Pull path to pt_pcc
|
|
% model_path: Path to the model to regenerate config for.
|
|
old_pythonpath = getenv('PYTHONPATH');
|
|
|
|
if ~isempty(getenv('PYTOOLS_ACTIVATE'))
|
|
[~, out]=system(['CALL %PYTOOLS_ACTIVATE% & python -m powertrain_build.config models "' model_path '"']);
|
|
elseif ~isempty(getenv('CALLING_PYTHON'))
|
|
% Local run using calling python version
|
|
fprintf('\nUsing calling python: %s\n', getenv('CALLING_PYTHON'));
|
|
setenv('PYTHONPATH', RootFolder)
|
|
[~, out]=system(['%CALLING_PYTHON% -m powertrain_build.config models "' model_path '"']);
|
|
else
|
|
% Local run
|
|
fprintf('\nUsing python version 3.6\n');
|
|
setenv('PYTHONPATH', RootFolder)
|
|
[~, out]=system(['py -3.6 -m powertrain_build.config models "' model_path '"']);
|
|
end
|
|
disp(out)
|
|
setenv('PYTHONPATH', old_pythonpath)
|
|
end
|