Quote:
Originally Posted by MamaSpoldi
I believe that we are deploying the debug version of the code... the path to the .out file is in the debug subdirectory under the project directory.
|
That would be the same debug build, then.
Quote:
Originally Posted by MamaSpoldi
Is it likely that the dynamic linking is handled differently on the cRIO during debug vs. when the code is deployed?
|
Nope... in fact, the deployment happens by simply picking up that file, renaming it to FRC_UserProgram.out and FTPing it to the cRIO. It doesn't even get relinked between the two methods of running.
Chances are you are just getting lucky when it works in debug and happens to align in a 24-bit window. Triple check that the -mlongcall flag is getting used. You should see it in the Build Console on each line (for compiling each file) as an option to "ccppc".
-Joe