You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Macro to call MXC_UART_Init function with appropriate parameters
We manually edited the #if chain to choose the definition #define UART_INIT(uart) MXC_UART_Init(uart, UART_BAUD, MAP_A) when (TARGET_NUM == 32665) and did get a basic CLI app working.
Is there any other reason for the CLI to be excluded from the MAX32665/6, or is this just an oversight?
Thank you
The text was updated successfully, but these errors were encountered:
The CLI lib seems to be missing the defines to call the correct
MXC_UART_Init(...)
function, near the top ofcli.c
:msdk/Libraries/CLI/src/cli.c
Line 50 in 5c1a332
We manually edited the
#if
chain to choose the definition#define UART_INIT(uart) MXC_UART_Init(uart, UART_BAUD, MAP_A)
when(TARGET_NUM == 32665)
and did get a basic CLI app working.Is there any other reason for the CLI to be excluded from the MAX32665/6, or is this just an oversight?
Thank you
The text was updated successfully, but these errors were encountered: