7 years, 6 months ago.

Nucleo serial interrupt compatible code to LPC_UART0?

How do I make this peace of code compatible for NUCLEO F030R8? The code is for some LPCxxxx processor/board

// Rx Interupt routine
void Rx_interrupt(void){
    LPC_UART0->IER = 0;                   // Disable Rx interrupt
    (*RX_THREAD_POINTER).signal_set(0x1); // dereference of RX_THREAD_POINTER
}
Be the first to answer this question.