Hello,
I am using LAUNCHXL-CC2650 Rev 1.3.0
BLE SDK 2_02_07_06
CCS7.4
Compiler TI v5.2.6
I want to store large data in External flash memory.(data is about 150KBytes).
My main goal is to add Ext flash functions to simple peripheral project Since in this example I have done changes as per my project requirement.
I am referring to ExtFlash.c and ExtFlash.h files in middleware folder of Simple peripheral project example.
bool ExtFlash_open(void)
{
bool f;
hFlashPin = PIN_open(&pinState, BoardFlashPinTable);
if (hFlashPin == NULL)
{
return false;
}
above function returning false.
Please tell me why its returning False?


