Hi
my application is working fine with secure bootloader on devkit PCA10056 using nRF52840 and GCC.
Now I want to bring it to my target hardware using nRF52820
to get rid of the complaints about missing FPU I defined
CFLAGS += -DFLOAT_ABI_SOFT
CFLAGS += -D__SOFTFP__
ASMFLAGS += -DFLOAT_ABI_SOFT
ASMFLAGS += -D__SOFTFP__
but another error message hurts me much more. The source file
nRF5_SDK_17.0.2_d674dde/components/libraries/crypto/backend/cc310_bl/cc310_bl_backend_init.c
contains a function cc310_bl_backend_init(void) which does at line 86
NRF_CRYPTOCELL->ENABLE = 1;
I realize nRF52820 has no crypto cell.
Does that mean I have to forget about secure DFU on nRF52820 ?
Or is there an software emulation I can enable?
best regards
Peter