Part Number: TMS320F28388D
Tool/software:
Hello,
I read that the maximum baudrate in SCI can be LSPCLK/16 is this correct?
if I look in the examples code lets take the ex2_loopback_interrupt example.
in this example I can see the defines are like this:
#define DEVICE_AUXSRC_FREQ 25000000
#define DEVICE_SYSCLK_FREQ (DEVICE_AUXSRC_FREQ*32)/(2*2*1)
#define DEVICE_LSPCLK_FREQ (DEVICE_SYSCLK_FREQ/4)
so according to this definitions I found that LSPCLK is 50,000,000 so max baudrate is 50000000/16= 3,125,000?
I tried it and its working ok.
but is there anyway to change something and go a little higher than 3,125,000?
I tried changing this line to be:
#define DEVICE_LSPCLK_FREQ (DEVICE_SYSCLK_FREQ)
and use baudrate of 6250000 but this is not working.
can it be done somehow?

