I probably should have included the following in my original post:
I am using Codewarrior IDE version 5.9.0
here is what I am initializing the micro with:
void SCI_init(void){
SOPT_COPE = 0; /*Disable COP */
ICGC1=0x038; /*Bus Frequency is 4.19MHz*/
ICGC2=0x00;
SCI1BDH=0x00; /* Set Baud */
SCI1BDL=0x08; /* 9600=1a, 31.25K=08 */
SCI1C1=0x00; /*Clear SCI1C1 register */
SCI1C2=0x00; /*Clear SCI1C2 register */
SCI1C3=0x00; /*Clear SCI1C3 register */
SCI1C2_TE=1; /*Enable TX */
}
Thanks,
Dan