Customized hardware implementation causes a simulink error: Invalid index with 2018b.
Afficher commentaires plus anciens
I am customizing my own hardware implementation according to the tutorial: https://www.mathworks.com/help/rtw/ug/hardware-targets.html using ert.tlc with matlab 2018b.
When I select my customized hardware implementation and ert.tlc(Embedded Coder) as system target file, the simulink 'Build Model' command reports a 'Component:Simulink | Category:Block diagram error: Invalid index' error as shown in the following picture,

When I run the sl_build(gcs) command independently, the detailed error is displayed as,
Error using mf.zero.PrimitiveSequence/at
Invalid index.
Error in Simulink.filegen.internal.FolderSpecificationTokens/resolveTargetEnvironemntToken
Error in Simulink.filegen.internal.FolderSpecificationTokens
Error in Simulink.filegen.internal.FolderConfiguration
Error in slbuild_private
Error in sl (line 15)
[varargout{1:nargout}]=feval(varargin{:});
Error in slbuild (line 83)
sl('slbuild_private', mdl, target, varargin{2:end});
My customized script is just as follows without any modifications from the above URL,
function sl_customization(cm)
cm.registerTargetInfo(@loc_register_device);
end
function thisDev = loc_register_device
thisDev = RTW.HWDeviceRegistry;
thisDev.Vendor = 'MyDevVendor';
thisDev.Type = 'MyDevType';
thisDev.Alias = {};
thisDev.Platform = {'Prod', 'Target'};
thisDev.setWordSizes([8 16 32 32 32]);
thisDev.LargestAtomicInteger = 'Char';
thisDev.LargestAtomicFloat = 'None';
thisDev.Endianess = 'Unspecified';
thisDev.IntDivRoundTo = 'Undefined';
thisDev.ShiftRightIntArith = true;
thisDev.setEnabled({'IntDivRoundTo'});
end
The Hardware Implementation pane is shown as follows:

By the way, it works correctly in the MATLAB 2017b environment and my computer system version is Windows 10 1809.
How can I customize my own hardware implementation correctly for scientific purposes in 2018b?
Thanks in advance for your answers.
Réponse acceptée
Plus de réponses (2)
Andrei Vlad
le 30 Nov 2018
0 votes
Hello,
I am trying to generate code for an STM32 discovery board (STM32L476G) for academic purposes.
I am using matlab 2018 and embedded coder together with the STM32 Mat/Target support package and STM32CubeMx.
I have selecte in Hardware Implementation STM32 as the vendor and device type.
I have generated a .ioc (cubemx config) file which I have then imported and specified the correct cubemx path in matlab.
I have built a simple example to control the LEDs based on the joystick (see attachment).
When trying to generate code I get the following issue: Invalid index.
Current observation: The model itsself is not a problem as i can remove all stm32 specific blocks and leave a very simple logic without solving the issue.
Assumption: The STM32 library which is imported when selecting stm32 in hardware implementation is not imported with a correct index.
Please help me solve this issue!
Many thanks,
Andrei
1 commentaire
Jonathan Mott
le 25 Déc 2018
From your Simulink model, select Model Configuration Parameters. Under the Hardware Implementation menu, select Custom Processor from the Device vendor drop down list. Make sure you configure it so it has the same device details as the STM32 32-bit Cortex-M Device type.
Lars Rosqvist
le 30 Nov 2018
0 votes
Hi,
Try to search for a function called loc_createDevice in your STM installation.
If you find it, check if the Alias is empty.
/Lars
5 commentaires
Andrei Vlad
le 30 Nov 2018
Hello,
thank you for the quick answer! I have just done that and cannot seem to find this function. Is there another way to get to this alias and check ?
Best regards,
Andrei
Andrei Vlad
le 3 Déc 2018
Hello,
I have tried once again and came to 2 conclusions:
- It is definetely a setup issue (so probably this missing alias)
- The scripts in the stm32 installation are .p files which I cannot look into / edit
Best regards,
Andrei
Peter Bouten
le 12 Déc 2018
Indeed remarkable. Setting the target to ST10 does build where STM32 fails.

Have you already contacted STM32 community? If so please add link to the topic.
Peter Bouten
le 14 Déc 2018
ST Community is aware and 2018b support for STM32-MAT is in progress:
Andrei Vlad
le 27 Déc 2018
Hello,
Sorry for the late reply. Indeed, I have used the same fix (production hardware different from target hardware). I have also contacted STMicroelectronics directly, but they did not offer an answer.
In the meantime I have seen there are many other bugs in the tools STM provides (MAT Target, CubeMx, SW4STM32). Hopefully they will be fixed soon.
Best regards,
Andrei
Catégories
En savoir plus sur STMicroelectronics Discovery Boards dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

