Part Number: TMS320F280033
Tool/software:
Hello,
how can I set bits of the SCIPRI register? I can't find any related driver library function in sci.h
Thanks,
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: TMS320F280033
Tool/software:
Hello,
how can I set bits of the SCIPRI register? I can't find any related driver library function in sci.h
Thanks,
Hi Samruddhi,
It doesn't look like we have any driverlib functions to set the FREESOFT field in that register. You can set these bits via a direct write to the register in your code. For example, if you wanted to set the priority control mode to complete the current receive/transmit sequence before stopping, you could do the following during initialization:
HWREGH(base + SCI_O_PRI) |= (1 << 3);
Best Regards,
Delaney