Skip to content

Commit

Permalink
resolve UART naming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
adabreuti committed May 11, 2023
1 parent e938154 commit aa44084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/lock-app/cc13x2x7_26x2x7/chip.syscfg
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ UART1.$name = "CONFIG_UART_DEBUG";
/* TRNG */
TRNG1.$name = "CONFIG_TRNG_0";
TRNG2.$name = "CONFIG_TRNG_1";
TRNG3.$name = "CONFIG_TRNG_APP";
TRNG3.$name = "CONFIG_TRNG_THREAD";

RTOS.name = "FreeRTOS";

Expand Down
2 changes: 1 addition & 1 deletion src/platform/cc13xx_26xx/Logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extern "C" int cc13xx_26xxLogInit(void)
// Most params can be default because we only send data, we don't receive
uartParams.baudRate = 115200;

sDebugUartHandle = UART2_open(CONFIG_UART2_DEBUG, &uartParams);
sDebugUartHandle = UART2_open(CONFIG_UART_DEBUG, &uartParams);
return 0;
}

Expand Down

0 comments on commit aa44084

Please sign in to comment.