Hello,
For a baud rate of 230400 bit/sec, you would need a bus frequency of 7.3728 MHz. But this is not feasible using FEI mode (or FEE mode). The reference frequency would need to be 28.8 kHz, which is outside the operating range of the DCO, and may not be trimmable.
However, it should be possible to use an external crystal or oscillator at 14.7546 MHz, using FBE mode. But other problems may potentially arise!
The character period for this baud rate is equivalent to 16 * 2 * 10 = 320 bus cycles. To avoid overrun errors, and loss of received data, the ISR for processing each received character would need to occupy somewhat less than 320 bus cycles, for the worst case ISR processing. This does not allow for the processing of any other unrelated interrupt, to add further delays to the commencement of SCI receive ISR. All other interrupts may potentially need to be disabled.
To make use of FEI mode, you would need to choose a HCS08 device having a 20 MHz maximum bus frequency. For a baud rate divisor value of 5, a bus frequency of 18.432 MHz would be required. This can be achieved with a reference frequency trimmed to 36.0 kHz, which is within the normal operating range. This would also have the added benefit of increasing the number of bus cycles per character period to 16 * 5 * 10 = 800 cycles.
Whether or not overrun errors can be avoided will depend on how much processing of the received data is required, and the length of each received data burst. Within the SCI receive ISR itself, I would suspect that there would be only sufficient time to store each new character in a buffer, with additional processing done from the main loop.
Regards,
Mac