I am using the LAUNCHXL2-RM46 kit
case 11U:
byte = (uint8)(sciREG->RD & 0x000000FFU);
if (g_sciTransfer_t[0U].rx_length > 0U)
{
*g_sciTransfer_t[0U].rx_data = byte;
g_sciTransfer_t[0U].rx_data++;
g_sciTransfer_t[0U].rx_length--;
si (g_sciTransfer_t[0U].rx_length == 0U)
{
sciNotification(sciREG, (uint32)SCI_RX_INT);
}
}
sci notification() will not be executed, because it is not known what length SCIRX will receive. How can i fix this