I am trying to implement the Bluetopia stack using the MSP430F5635 MCU and the CC256 bluetooth chip using Code Composer v7. When I try to build my project, I am getting the error: "unresolved symbol BSC_Initialize ...". I have the BSCAPI header file included so I can't figure out why it cannot find this function.
Below is the relevant code I am using:
#include "BSCAPI.h"
...
int main(void) {
...
Result = BSC_Initialize(&HCI_DriverInformation, 0);
...
}