This might be small problem, but i am not able to fix it.
i am working with nRF52 DK .i had created new project, in which i am using spim0 and spim1, also want to use ble_app_uart in same project.
i had included all necessary path in target option. Path for nrf_soc.h(E:\IMP\patronix\0. Prjct_software\2\SDK 11\components\softdevice\s132\headers) also included .
even thought it is giving error
*** Using Compiler 'V5.06 update 4 (build 422)', folder: 'C:\Keil_v5\ARM\ARMCC\Bin'
Build target 'nrf52832_xxaa'
compiling nrf_delay.c...
compiling pstorage.c...
..\SDK 11\components\drivers_nrf\pstorage\pstorage.c(341): warning: #223-D: function "sd_flash_write" declared implicitly
flash_api_err_code_process(sd_flash_write(p_dst, p_src, size_in_words));
..\SDK 11\components\drivers_nrf\pstorage\pstorage.c(437): warning: #223-D: function "sd_flash_page_erase" declared implicitly
flash_api_err_code_process(sd_flash_page_erase(page_number));
..\SDK 11\components\drivers_nrf\pstorage\pstorage.c(1122): error: #20: identifier "NRF_EVT_FLASH_OPERATION_SUCCESS" is undefined
case NRF_EVT_FLASH_OPERATION_SUCCESS:
..\SDK 11\components\drivers_nrf\pstorage\pstorage.c(1126): error: #20: identifier "NRF_EVT_FLASH_OPERATION_ERROR" is undefined
case NRF_EVT_FLASH_OPERATION_ERROR:
..\SDK 11\components\drivers_nrf\pstorage\pstorage.c: 2 warnings, 2 errors
compiling main.c...
main.c(246): warning: #223-D: function "sd_power_system_off" declared implicitly
err_code = sd_power_system_off();
main.c(527): warning: #177-D: function "power_manage" was declared but never referenced
static void power_manage(void)
main.c: 2 warnings, 0 errors
compiling fstorage.c...
..\SDK 11\components\libraries\fstorage\fstorage.c(86): warning: #223-D: function "sd_flash_write" declared implicitly
return sd_flash_write((uint32_t*)p_op->store.p_dest + p_op->store.offset,
..\SDK 11\components\libraries\fstorage\fstorage.c(95): warning: #223-D: function "sd_flash_page_erase" declared implicitly
return sd_flash_page_erase(p_op->erase.page);
..\SDK 11\components\libraries\fstorage\fstorage.c(469): error: #20: identifier "NRF_EVT_FLASH_OPERATION_SUCCESS" is undefined
case NRF_EVT_FLASH_OPERATION_SUCCESS:
..\SDK 11\components\libraries\fstorage\fstorage.c(473): error: #20: identifier "NRF_EVT_FLASH_OPERATION_ERROR" is undefined
case NRF_EVT_FLASH_OPERATION_ERROR:
..\SDK 11\components\libraries\fstorage\fstorage.c: 2 warnings, 2 errors
compiling ble_advertising.c...
..\SDK 11\components\ble\ble_advertising\ble_advertising.c(472): error: #20: identifier "NRF_EVT_FLASH_OPERATION_SUCCESS" is undefined
case NRF_EVT_FLASH_OPERATION_SUCCESS:
..\SDK 11\components\ble\ble_advertising\ble_advertising.c(476): error: #20: identifier "NRF_EVT_FLASH_OPERATION_ERROR" is undefined
case NRF_EVT_FLASH_OPERATION_ERROR:
..\SDK 11\components\ble\ble_advertising\ble_advertising.c: 0 warnings, 2 errors
".\Objects\nrf52832_xxaa.axf" - 6 Error(s), 6 Warning(s).
Target not created.
Build Time Elapsed: 00:00:08