i've wrote something like this, but it only sends message through the USB (not from the RS232 port as i would like it to be), even if i change specific jumper from USB to COM... 
/////////////////////////////////////////////////////////////////////////////////////////
// InitSCI
/////////////////////////////////////////////////////////////////////////////////////////
void InitSCI(word baud) {
SCIBD = baud; // set baud
}
/////////////////////////////////////////////////////////////////////////////////////////
// SendMsg
/////////////////////////////////////////////////////////////////////////////////////////
void SendMsg(char msg[]) {
byte i=0;
char nxt_char;
SCIC2 = 0x08;
nxt_char = msg[i++];
while(nxt_char != 0x00) {
while(!SCIS1_TDRE){}
SCID = (byte) nxt_char;
nxt_char = msg[i++];
}
}
///////////////////////////////////////////
SendMsg("HELLO");
SendMsg("\r\n");