This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Unresolved symbol: “Fapi_enableEepromBankSectors” when using F021 Flash API.



Hello

I need to program the EEPROM in the following configuration: RM48 microcontroller with CCS Version 6.1.0
To install the F021 Flash API I downloaded the file spnc033.zip then I executed the file F021FlashApi-02.01.01-windows-installer.exe.
The include files have been installed in the directory: "C:\ti\Hercules\F021 Flash API\02.01.01\include\”
The lib files have been installed in the directory: “C:\ti\Hercules\F021 Flash API\02.01.01\”
I indicated those directories in CCS project properties.
Then I wrote the following instructions in the project:

Fapi_StatusType Fapi_enableEepromBankSectors(uint32_t u32SectorsEnables_31_0, uint32_t u32SectorsEnables_63_32);

Fapi_StatusType FapiResult;

uint32_t EEPROM_SectA = 1<<0;

uint32_t EEPROM_SectB = 0;

       FapiResult = Fapi_enableEepromBankSectors(EEPROM_SectA, EEPROM_SectB);

Then I got the following error: Unresolved symbol: “Fapi_enableEepromBankSectors”.
What is missing?
Thanks for your Help.
Jerome