We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi ,
I'm getting the output on simulation serial window.I have programmed the uC,But I am not getting output on flash-magic terminal window ,even-though I'm getting the output on simulation serial window.......
Anyone please help me....
I'm using LPC1114.....
I try to elaborate my problem .....
I am using LPC 1114 uC.
I am doing serial communication testing.
I am using sample codes given by NXP.
I am getting simulation output.
But after programming the uC,I am seeing blank flash magic terminal window...!
I don't what is the problem..!
I have tried AUTO BAUD also.....,There also same problem...
Please anybody help me.........
What about the Hardware?
I am thinking H/W is well, because I am programming using UART (ISP via UART)only....
Have you configured the UART pins in IOCONFIG?
what about the SYSAHBCLKCTRL register?
are they configured properly?
Hi,
the following is the part of my code configuring UART pins & enabling CLK for UART
LPC_IOCON->PIO1_6 &= ~0x07; /* UART I/O config */ LPC_IOCON->PIO1_6 |= 0x01; /* UART RXD */ LPC_IOCON->PIO1_7 &= ~0x07; LPC_IOCON->PIO1_7 |= 0x01; /* UART TXD */ LPC_SYSCON->SYSAHBCLKCTRL |= (1<<12); // UART CLK
Please anyone help me out.........