How to configure project to run on 4x4 HW?
Verify sample project SimpleBLEPeripheral on SmarfRF06 board with 7x7 HW and workable.
And then I try to modify the project include options file to link to my new board.c and board.h.
"${TI_RTOS_DRIVERS_BASE}/ti/boards/NEWBOARD/CC2650EM_4XS"
In board.c
PIN_Config BoardGpioInitTable[] = {
Board_LED1 | PIN_GPIO_OUTPUT_EN | PIN_GPIO_HIGH | PIN_PUSHPULL | PIN_DRVSTR_MAX, /* LED initially off */
Board_LED2 | PIN_GPIO_OUTPUT_EN | PIN_GPIO_HIGH | PIN_PUSHPULL | PIN_DRVSTR_MAX, /* LED initially off */
Board_LED3 | PIN_GPIO_OUTPUT_EN | PIN_GPIO_HIGH | PIN_PUSHPULL | PIN_DRVSTR_MAX, /* LED initially off */
Board_LED4 | PIN_GPIO_OUTPUT_EN | PIN_GPIO_HIGH | PIN_PUSHPULL | PIN_DRVSTR_MAX, /* LED initially off */
PIN_TERMINATE /* Terminate list */
};
In board.h
#define Board_LED1 IOID_0
#define Board_LED2 IOID_9
#define Board_LED3 IOID_8
#define Board_LED4 IOID_7
Don't know what parameters else I need to change to support 4x4 HW. Any information is welcome. Thanks!