I am trying to run a code on DSP TMS320C6472 architecture using Code Composer studio. However, I get this error
a parameter is not allowed
which points to
void affichage(int ligne,int col,double A[ligne][col])
Meanwhile, I don't get this error with ARM cortex-M0 architecture.
I tried to modify A[ligne][col]
from a matrix to an array but I got the same error.
So does anyone have a clue what is the problem here? Also my colleague said that a matrix is not allowed with DSP, is that right?