TICK_COUNT appInitSoftware(TICK_COUNT loopStart){
rprintf("\nW.\n\n");
}
Does that work
appInitSoftware is only called once. So it would be better to put it in your appControl which is called over and over.
ie, per waltr suggestion, then:
uint8_t i;
for(i = 0; i< 100; i++){
rprintfChar(' ');
}
for(i = 0; i< 100; i++){
rprintfChar('w');
}
But there are still some assumptions here:
1. If you are using Project Designer then check your project for Uart1 (the USB port) as to what baud rate it is using and when you generate the code then say that rprintf should go to UART1
2. If you are not using Project Designer then you need to do this yourself in appInitHardware ie:
uartInit(UART1, 115200); // set the baud rate of UART1
rprintfInit( uartGetWriter(UART1) ); // Tell rprintf to output to UART1, the default is that rprintf output is thrown away!
If you still have problems then send me ALL of the C and H files and I will take a more informed look.