In VCS C++ professional, in the directory of commands, it lists “Brain.SDcard.saveFile” typing this in results in an error
no member named "Brain.SDcard.saveFile" in vex::brain::sdcard
but when you type in “Brain.SDcard.savefile” (no capital f) there is no error. I believe this is in error.
Onto my second point, is it at all possible to save a 2 dimensional array say
int example [10][10]
to a file on the SD card? I understand how to use a one dimensional array, but cant figure out how to use something like this.
Brain.SDcard.saveFile("filename.c",example,100);
The error I get is
"cannot initialize a parameter of type 'uint8_t *' (aka 'unsigned char *') with an lvalue of type 'int [10][10]'
Brain.SDcard.savefile("filename.c",example,100); "