Part Number: LAUNCHXL-CC2650
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 Flash_status = 0;
Flash_status = ExtFlash_open();
if (Flash_status)
{
System_abort("Flash initialized OK\n");
System_flush();
}
else
{
System_abort("Error in Flash\n");
System_flush();
}
I am calling function extFlashOpen() (refer code snippet).
But Ext Flash initialization fails.

hFlashPin = PIN_open(&pinState, BoardFlashPinTable);
if (hFlashPin == NULL)
{
return false;
}
When I stepped in by using single step in debugging mode, I came to know that hFlashPin is also returning false.
