Programmatically set StorageClass to ImportFromFile on signals
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I'm porting some custom Matlab functions/scripts from 2018b to 2020b. These are used when generating C code from Simulink to an embedded target. I have a custom block in Simulink where I programmatically draw a line between an inport and Matlab Function block, and set its storage class to ImportFromFile:
set(lineHandle, 'SignalObjectPackage', 'mpt');
set(lineHandle, 'StorageClass', 'ImportFromFile (Custom)');
This code worked fine in 2018b. But in 2020b I get this error message:
"ImportFromFile" is not a valid storage class name for signals.
I have looked in the documentation but can't find any relevant information on why this is no longer working.
Best regards,
0 Kommentare
Antworten (1)
Jasvin
am 6 Mär. 2023
You can refer to the "Configure Code Generation Settings for Signals Programmatically” section in the below documentation link. It has detailed steps for achieving exactly what you are asking for in the R2020b version.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Simulink Coder finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!