Hey,
As you can probably tell from my questions, i'm porting from arduino to maple. So far so good!
The only question, on my arduino, I can use the command memcpy to copy a 64 piece array from one section to another, for example:
memcpy(array1, array2, 128);
The small snippet of code above will copy array2 to array1.
When I tried to write this code to my maple, it said that memcpy was not declared in this scope, the arduino IDE allows me to use this piece of code.
What am I doing wrong?
Thanks,
Harris