Part Number: CC2650
Hello,
I am using custom CC2650 board, with stack ble_sdk_2_02_01_18.
I imported multirole project from github website.
I link my board files in startup/board.c with following
#elif defined(MYBOARD)
#include "../../boards/MYBOARD/Board.h"
#include "../../boards/MYBOARD/CC2650_MYBOARD.c"
I created my own link in board.h
#elif defined(MYBOARD)
#include "../../boards/MYBOARD/CC2650_MYBOARD.h"
Finally I removed the pre-defined symbol for launchpad and added MYBOARD.
Now, there seem to be a linking problem. In main.c if I open the declaration for BoardGpioInitTable, it opens Launchpad board files instead of MYBOARD files.
How to properly link the BoardGpioInitTable in main.c ?
Thanks and Regards
Gourang