Thank you redbee for your answer but this is not what I search. In fact I want to use a similar thing to what we use before with the other interrupt.I have started by declaring this code to initiate the Uart Interrupt.
ITC_Init();IntAssignHandler(gUart1Int_c, (IntHandlerFunc_t)UartIsr1);ITC_SetPriority(gUart1Int_c, gItcNormalPriority_c);ITC_EnableInterrupt(gUart1Int_c);
in the other interrupt I have just to use the CRM_RegisterISR() function to make the interruption but now I can't find a solution for the UART module.
Do you understand me ?
In other term, what I want to do is, to do a read from the NVM when the user make an order by the UART.
My problem is how to do this order by UART and with the use of the UART Interrupt.It seems to be easy but I haven't find a solution 