Good morning,
I'm trying to port the HTS to the PCA0056 board towards chip nRF52833.
I followed the guideline and modified memory mapping as follows:
Section Placement Macros:
FLASH_PH_START=0x0
FLASH_PH_SIZE=0x80000
RAM_PH_START=0x20000000
RAM_PH_SIZE=0x20000
FLASH_START=0x27000
FLASH_SIZE=0x51000
RAM_START=0x20001198
RAM_SIZE=0x1ee68
Memory Segments:
FLASH RX 0x0 0x80000;RAM RWX 0x20000000 0x20000
I also changed the processor type in debugger section. I can compile and upload the code, but everything crashes
on this function: ret_code = sd_ble_cfg_set(BLE_CONN_CFG_GAP, &ble_cfg, *p_ram_start);
Below the image:
Can someone help me?