You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The transmitter HDL fails to compile with an error where uint64 is written into embedded.fi {uint64} type, an issue not present in MATLAB R2019b.
Diagnostic:
This assignment writes a 'uint64' value into a 'embedded.fi {uint64}' type. Code generation does not support changing types through assignment. Check preceding assignments or input type specifications for type mismatches.
Function 'Transmitter HDL/DMA Interface/DMA Control' (#127.2966.2976), line 90, column 13:
"wordBuffer"
Fix: Initialize the wordBuffer variable with a fixdt(0,64,0,0) so that there is no type mismatch further down in the code.
The text was updated successfully, but these errors were encountered:
The transmitter HDL fails to compile with an error where uint64 is written into embedded.fi {uint64} type, an issue not present in MATLAB R2019b.
Diagnostic:
This assignment writes a 'uint64' value into a 'embedded.fi {uint64}' type. Code generation does not support changing types through assignment. Check preceding assignments or input type specifications for type mismatches.
Function 'Transmitter HDL/DMA Interface/DMA Control' (#127.2966.2976), line 90, column 13:
"wordBuffer"
Fix: Initialize the wordBuffer variable with a fixdt(0,64,0,0) so that there is no type mismatch further down in the code.
The text was updated successfully, but these errors were encountered: