Hi Frank,
Thank you for the rapid reply.
But, MCUExpresso IDE is not having this LPC11E36 microcontroller examples. Especially, I need to send any string through uart.
Below program only I used,
/*
===============================================================================
Name : uart_testing.c
Author : $(author)
Version :
Copyright : $(copyright)
Description : main definition
===============================================================================
*/
#ifdef __USE_CMSIS
#include "LPC11Exx.h"
#endif
#include <cr_section_macros.h>
int main(void) {
Chip_UART_Init(LPC_USART0);
Chip_UART_SetBaudFDR(LPC_USART0, 9600); // Set baud rate to 9600
// Send "Hello, World!" message using UART
const char *helloWorldMsg = "Hello, World!\r\n";
while (1) {
Chip_UART_Send(LPC_USART0, helloWorldMsg, strlen(helloWorldMsg));
}
return 0;
}
But, It returning error like LPC_USART0 undeclared.
Linking is not happening also coming.
Is there way to do other than this lpcexpresso ide?. This ide have lot of confusion.
Best Regards,
kamalesh