C Union data type in Matlab/Simulink
32 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
vamshi krishna kammadanam
el 13 de Abr. de 2022
Respondida: Muthukumar Ganesan
el 20 de Ag. de 2022
Hi all,
I am trying to port embedded hardware driver files written in C to Simulink using C Caller.
I am able to port it except the Union datatype. Matlab does not recognise this data type.
Has anyone been able to solve this?
The final aim is to use embedded coder to generate C code to run the hardware.
0 comentarios
Respuestas (2)
Mark McBroom
el 16 de Abr. de 2022
You are correct that Simulink does not support unions. If you plan to use only one of the union-ed fields in your Simulink model, you can temporarily replace the union-ed field with the actual field you will use in Simulink. After genratig code, you can switch back to the original header file that contains the union.
THanks.
Mark.
0 comentarios
Ver también
Categorías
Más información sobre Simulink Coder en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!