• UART transmitting interrupt handler
    Hello I am facing a problem in the following code. code :- #include "LPC318x.h" void IRQ_HANDLER(void) __irq { PIO_OUTP_SET = 0x7EFFFFFF; PIO_OUTP_SET = 0x7EFFFFFF; } int main (void...
  • Getting LPC11C14 UART to transmit
    Hi This is my first time getting into NXP MCU, I have NXP LPC11C14 Cortex-M0 MCU trying to get its UART peripheral to transmit a simple character. I followed the steps in user manual (UM10398) but...
  • Transmit UART on F320
    I am reading in I2C protocol, which fills up a USB_TX_Buffer. I have that buffer in the watch window and can see the values I want filling it up, but when I to transmit it out on the UART TX pin on the...
  • Crash when 2 UARTs transmit at same time
    Hi I have a problem on a LPC2478 where if I keep transmiting the same data to both UART0 and UART2 at the same time very soon the micro will crash with a prefetch Abort error raised. I beleive this...
  • Fetching data from lcd and transmitting on UART
    I am currently working on LPC2148 and had an issue. I am reading the sensor reading and converting it to another unit and transmitting it on to the LCD. Now I want to transmit the Converted data to UART...