Part Number: TMS320F28335
Tool/software: TI C/C++ Compiler
Hello
I am doing something like this:
struct BIG { lots of fields };
struct BIG A, B;
:
A = B;
The compiler is generating a call to __memcpy_ff to do this, and as we are not using library functions (aviation) this is a bother.
I can write a copy function, but have never got this issue before when copying structures.
So, why is it happening? Is it just that it is a big struct?
Thanks.