Hi,
My observations:
DSP_PRESENT Macro is enabled in nrf51.h , nrf52.h, nrf5340_application.h files in v1.5.0\modules\hal\nordic\nrfx\mdk path
As shown below:
#define __DSP_PRESENT 1 /*!< DSP present or not
DSP_[RESENT Macro is disabled in nrf5340_network.h file in v1.5.0\modules\hal\nordic\nrfx\mdk
As shown below:
#define __DSP_PRESENT 0 /*!< DSP present or not
I have used nrf5340_network.h file in my application. The below error is occured during compilation code which is generated from core_cm33.h
#error "Compiler generates DSP (SIMD) instructions for a devices without DSP extensions (check __DSP_PRESENT)"
I think so, because of disabled __DSP_PRESENT Macro.
May I know why it is disabled in nrf5340_network.h file and why it is enabled in nrf51.h, nrf52.h and nrf5340_application.h files.
Thanks & Regards,
Srinivas Rao.