Clear Filters
Clear Filters

How do I assign the storage class of a test point with ert.tlc?

4 views (last 30 days)
Is it possible to modify ert.tlc to allow me to have all model test points get assigned to a storage class?

Accepted Answer

Debadipto
Debadipto on 4 Aug 2023
Hi Taylor,
You can check the following code snippet in order to assign all model test points to a storage class:
testPoints = find_system(model, 'BlockType', 'TestPoint');
% Assign storage class to each test point
storageClass = 'ExportedGlobal';
for i = 1:numel(testPoints)
set_param(testPoints{i}, 'StorageClass', storageClass);
end
Thanks & Regards,
Debadipto Biswas
  1 Comment
Taylor
Taylor on 23 Aug 2023
I think this generally work. I was hoping for a tlc solution that does not update the model itself (only the generated code), but this may be the most straight forward solution.
Thanks,
Taylor

Sign in to comment.

More Answers (0)

Categories

Find more on Deployment, Integration, and Supported Hardware in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!