The HalCoGen RM48x Help lists the following 2 functions:
void sciEnableNotification(sciBASE_t * sci, uint32 flags);
void sciDisableNotification(sciBASE_t * sci, uint32 flags);
I traced the flags argument to the following:
// Interrupt Flag Definitions
//enum sciIntFlags
//{
// SCI_FE_INT = 0x04000000U, /* framing error */
// SCI_OE_INT = 0x02000000U, /* overrun error */
// SCI_PE_INT = 0x01000000U, /* parity error */
// SCI_RX_INT = 0x00000200U, /* receive buffer ready */
// SCI_TX_INT = 0x00000100U, /* transmit buffer ready */
// SCI_WAKE_INT = 0x00000002U, /* wakeup */
// SCI_BREAK_INT = 0x00000001U /* break detect */
//};
I want to be able to change the status of one of the bits, usually the TBR notification. How can I read in the current state of the flags register? I do not see any read notification flags register function.