Hello Bryan Wilcutt,
After configuration UART, in M0 core, we can directly use it.
You can have a look at the multicore_blinky demo under LPCopen LPCOpen Software for LPC43XX | NXP ,
in M4 core project has initialized the UART in
static void prvSetupHardware(void)
{
SystemCoreClockUpdate();
Board_Init();
...
}
you can add UART send code in M0 core project to test, for example:
/**
* Wait for message from M4 core
*/
void M4_IRQHandler(void)
{
int i = 0;
ipcex_msg_t msg;
Chip_CREG_ClearM4Event();
Chip_UART_SendBlocking(DEBUG_UART, "world",6);//Alice test
...
}
Hope it helps,
Have a great day,
TIC
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------