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.

"symbol "osal_snv_write" redeclared with incompatible type:"

Hi,

uint8_t ThomasTest;
uint8_t *ThomasString;

*ThomasString = "This is a test";

ThomasTest = osal_snv_write(BLE_NVID_CUST_START, sizeof (*ThomasString), ThomasString);

When i run this code i got stcuk in "symbol "osal_snv_write" redeclared with incompatible type:" error. may i know why?.