Hi Peg,
I configured the MC9S08QG8 for the internal clock source of 16 MHz, so the bus clock is 8 MHz right?
The SCI is configured to receive serial data only with a baud rate of 9600.
There is no response of the leds on a serial interrupt with hyperterminal?
Here are some code snippets:
SCIBDH = 0x00;
SCIBDL = 0x34;
SCIC1 = 0x00;
SCIC2 = 0x34;
SCIC3 = 0x00;
UCHAR check = 0x00;
while(_SCIS1.Bits.RDRF)
{
/* Wait if RDRF = 1 , then read data */
}
check = SCIS1; /* Read status register with RDRF=1 to clear RDRF */
Have I something forgotten?
Max