Part Number: LP-CC2652RB
Other Parts Discussed in Thread: SYSCONFIG, , CC2652RB
I want to communicate using UART between the LP-CC2652RB and an ESP32. I have configured my LP-CC2652RB using sysconfig like such:
/**
* Import the modules used in this configuration.
*/
const UART = scripting.addModule("/ti/drivers/UART");
const uart = UART.addInstance();
/**
* Write custom configuration values to the imported modules.
*/
UART1.$name = "CONFIG_UART_0";
UART1.uart.txPin.$assign = "boosterpack.30";
UART1.uart.rxPin.$assign = "boosterpack.29";
UART1.txPinInstance.$name = "CONFIG_GPIO_0";
UART1.rxPinInstance.$name = "CONFIG_GPIO_1";
uart.ringBufferSize = 512;