Customized hardware implementation causes a simulink error: Invalid index with 2018b.
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (2)
Andrei Vlad
el 30 de Nov. de 2018
0 votos
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 comentario
Jonathan Mott
el 25 de Dic. de 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
el 30 de Nov. de 2018
0 votos
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 comentarios
Andrei Vlad
el 30 de Nov. de 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
el 3 de Dic. de 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
el 12 de Dic. de 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
el 14 de Dic. de 2018
ST Community is aware and 2018b support for STM32-MAT is in progress:
Andrei Vlad
el 27 de Dic. de 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
Categorías
Más información sobre STMicroelectronics Discovery Boards en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

